Skip to content

Commit 2ccfb63

Browse files
committed
readme
1 parent d61bac7 commit 2ccfb63

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,23 @@ Here's a screenshot to prove it works on my machine :)
1212
Examples
1313
====================
1414

15-
fibonacci
15+
defining functions
16+
<pre><code>
17+
A1 is #(* % 2)
18+
=clj("(map "&A1&" [1 2 3])")
19+
</code></pre>
20+
21+
fibonacci
1622
<pre><code>
1723
=clj("(def fib-seq ((fn rfib [a b] (lazy-seq (cons a (rfib b (+ a b))))) 0 1)) (take 20 fib-seq)")
1824
</code></pre>
1925

20-
sum of two cells
26+
sum of two cells
2127
<pre><code>
2228
=clj("[(+ "&A1&" "&B1&")]")
2329
</code></pre>
2430

25-
escaping double quotes
31+
escaping double quotes
2632
<pre><code>
2733
=clj("(str "&CHAR(34)&"foo"&CHAR(34)&")")
2834
</code></pre>

0 commit comments

Comments
 (0)