This repository has been archived by the owner on May 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.56 KB
/
index.html
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
<html>
<head>
<title>Clio Editor</title>
<meta content="">
<link rel="stylesheet" href="fonts/fira_code.css">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/1.4.0/css/perfect-scrollbar.min.css" />
<link rel="stylesheet" href="editor.css" />
<link rel="stylesheet" href="website.css" />
</head>
<body>
<div id="header">
<h1>Clio editor!</h1>
<div class="about">
<div class="about-inner">
Clio is a functional lazy-evaluated programming language <br>
targetting decentralized and distributed systems. It is made <br>
to take advantage of multiple cpus and cpu cores (parallelism) <br>
by default and to run on clusters and on the cloud easily.
</div>
</div>
</div>
<pre class="clio-editor" contenteditable="true">fn fib n:
if n < 2: n
else: (n - 1 -> fib) +
(n - 2 -> fib)
[0:10] -> * fib -> print
</pre>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/1.4.0/perfect-scrollbar.min.js"></script>
<script src="jquery.caret.min.js"></script>
<script src="clio.js"></script>
<script src="editor.js"></script>
<script>
$('.clio-editor').clio_editor();
</script>
</body>
</html>