-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdemo.html
More file actions
22 lines (20 loc) · 597 Bytes
/
Copy pathdemo.html
File metadata and controls
22 lines (20 loc) · 597 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>klispe-clj Standalone</title>
</head>
<body>
<script src="https://viebel.github.io/klipse-clj/klipse_clj.js"></script>
<script>
klipse_clj.core.eval("(map inc [1 2 3])").then(res => document.getElementById("klipse-res").innerHTML = res)
</script>
<h1> Klipse CLJ demo</h1>
<pre>
<code>
klipse_clj.core.eval("(map inc [1 2 3])").then(res => document.getElementById("klipse-res").innerHTML = res)
</code>
</pre>
<div id="klipse-res">Evaluating...</div>
</body>
</html>