summaryrefslogtreecommitdiff
path: root/code.lysp
diff options
context:
space:
mode:
Diffstat (limited to 'code.lysp')
-rw-r--r--code.lysp18
1 files changed, 11 insertions, 7 deletions
diff --git a/code.lysp b/code.lysp
index 47a0268..f509404 100644
--- a/code.lysp
+++ b/code.lysp
@@ -1,7 +1,11 @@
-(print
- (+ 1 (% 10 3))
- ()
- '( #| dit is commentaar|# ())
- (('()))
- 'kaas ;meer commentaar
- "kazen enzo")
+(do
+ (print 42)
+ (print
+ (+ 1 (% 10 3))
+ ()
+ '( #| dit is commentaar|# ())
+ '(('()))
+ '''"hoi"
+ '''''(dit is quoted)
+ 'kaas ;meer commentaar
+ "kazen enzo")) \ No newline at end of file