-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathclojure-demo.html
66 lines (43 loc) · 1.34 KB
/
clojure-demo.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title> Clojure demo</title>
<link rel="stylesheet" type="text/css" href="https://storage.googleapis.com/app.klipse.tech/css/codemirror.css">
<link rel="stylesheet" type="text/css" href="https://viebel.github.io/klipse/css/main.css">
</head>
<body class="container">
<h1> Clojure demo</h1>
<p>Ths page is <strong>live</strong> and <strong>interactive</strong>
powered by the <a href="https://github.com/viebel/klipse">klipse plugin</a>:</p>
<ol>
<li><strong>Live</strong>: The code is executed in your browser</li>
<li><strong>Interactive</strong>: You can modify the code and it is evaluated as you type</li>
</ol>
<h2> Require a namespace </h2>
<pre><code class="clojure">
(ns my.first-ns
(:require
[clojure.string :as string]))
(string/capitalize "klipse")
</code></pre>
<h2> Require a namespace and rename some variables </h2>
<pre><code class="clojure">
(ns my.ns
(:require
[clojure.set :refer [union intersection] :rename {union UNION}]))
[(intersection #{1 2 3} #{2 3 4})
(UNION #{1 2 3} #{2 3 4 5})]
</code></pre>
<br/>
<br/>
<br/>
<br/>
<script>
window.klipse_settings = {
selector: '.clojure'
};
</script>
<script src="https://storage.googleapis.com/app.klipse.tech/plugin/js/klipse_plugin.js"></script>
</body>
</html>