-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.shtml
40 lines (40 loc) · 1.73 KB
/
header.shtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>The Fancy Programming Language</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" title="style">
<link rel="shortcut icon" href="favicon.ico"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22787208-1']);
_gaq.push(['_setDomainName', '.fancy-lang.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="main">
<div id="header">
<a href="http://www.fancy-lang.org">Fancy</a>
<div id="header-sub">
A pure dynamic object-oriented, self-hosted<br/>
programming language for the Rubinius VM.
</div>
</div>
<div id="description">
Fancy is a new general-purpose programming language inspired by
Smalltalk, Ruby, Io and Erlang that runs on the <a href="http://www.rubini.us">Rubinius VM</a>.
It has first-class integration support with Ruby and any Ruby libraries supported by Rubinius,
including most C-extensions.
Fancy is a dynamic, pure object-oriented, class-based programming language with built-in support
for futures and actors.
The syntax is easy to learn, consistent and is mostly inspired by Ruby and Smalltalk.
<hr/>
</div>
<div id="body">
<!--#include virtual="menu.shtml" -->