diff options
Diffstat (limited to 'lisp/js/l.html')
-rw-r--r-- | lisp/js/l.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/js/l.html b/lisp/js/l.html index 9784596..cd716f3 100644 --- a/lisp/js/l.html +++ b/lisp/js/l.html @@ -16,12 +16,12 @@ (concat "banana " "oatmeal " "waffels")) (def foo - (add 1 2)) + (+ 1 2)) (print foo) (def bar - (add (add 3 3) 3)) + (+ (+ 3 3) 3)) (print bar) |