summaryrefslogtreecommitdiff
path: root/f.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'f.lisp')
-rw-r--r--f.lisp7
1 files changed, 7 insertions, 0 deletions
diff --git a/f.lisp b/f.lisp
new file mode 100644
index 0000000..5644138
--- /dev/null
+++ b/f.lisp
@@ -0,0 +1,7 @@
+(print 42)
+(print "kaas")
+(if 42 (print "ja") (print "nee"))
+(define f (lambda (a) (print a)))
+(f "iets")
+(define f (lambda (a) (print a a)))
+(f "iets")