-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
21 lines (21 loc) · 856 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>Cumalis Lisp Web REPL (Development)</title>
<meta charset="UTF-8" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://unpkg.com/jquery.terminal/js/jquery.terminal.min.js"></script>
<script src="https://unpkg.com/cumalis-lisp@latest/dist/index.umd.js"></script>
<link rel="stylesheet" href="https://unpkg.com/jquery.terminal/css/jquery.terminal.min.css" />
</head>
<body>
<h1>Cumalis Lisp Web REPL (Development)</h1>
<p>
Cumalis Lisp is a Scheme implementation written in Typescript.
</p>
<p>
README and source code are available on <a href="https://github.com/trb-a/cumalis-lisp">Github</a>.
</p>
<div id="term" style="height: 50vh;"></div>
<script src="./docs/web-repl.js"></script>
</body>
</html>