From 897fb17dd6a045a7056e6d6babbbb24748f698f6 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Sat, 9 Dec 2017 10:48:58 +0100 Subject: Initial --- f.lisp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 f.lisp (limited to 'f.lisp') 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") -- cgit v1.2.3-54-g00ecf