about summary refs log tree commit diff stats
path: root/awk/scheme/scheme/test/unit/lambdas.scm
diff options
context:
space:
mode:
Diffstat (limited to 'awk/scheme/scheme/test/unit/lambdas.scm')
-rw-r--r--awk/scheme/scheme/test/unit/lambdas.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/awk/scheme/scheme/test/unit/lambdas.scm b/awk/scheme/scheme/test/unit/lambdas.scm
new file mode 100644
index 0000000..a287b47
--- /dev/null
+++ b/awk/scheme/scheme/test/unit/lambdas.scm
@@ -0,0 +1,4 @@
+((lambda (x) (+ x 1)) 41)
+((lambda (x y) (+ x y)) 20 22)
+(define add1 (lambda (x) (+ x 1)))
+(add1 41) 
\ No newline at end of file