aboutsummaryrefslogtreecommitdiff
path: root/files/test.l
diff options
context:
space:
mode:
Diffstat (limited to 'files/test.l')
-rw-r--r--files/test.l9
1 files changed, 4 insertions, 5 deletions
diff --git a/files/test.l b/files/test.l
index 65707ed..d9e9acc 100644
--- a/files/test.l
+++ b/files/test.l
@@ -1,6 +1,5 @@
-(lambda (a b) (blah kajflkj foo bar))
+(define make-add (lambda (a) (lambda (b) (+ a b))))
+(define add4 (make-add 4))
+(add4 5)
-(define a 69)
-'(sn ,(+ a 1))
-(define a 70)
-'(sn ,(+ a 1))
+'(a b ,((lambda (a) '(test . ,a)) 69) c d)