summaryrefslogtreecommitdiff
path: root/test/files/run/lisp.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/lisp.check')
-rw-r--r--test/files/run/lisp.check13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/lisp.check b/test/files/run/lisp.check
new file mode 100644
index 0000000000..7a6c59ce7c
--- /dev/null
+++ b/test/files/run/lisp.check
@@ -0,0 +1,13 @@
+List('lambda,List('x),List('+,List('*,'x,'x),1))
+(lambda (x) (+ (* x x) 1))
+
+( '(1 2 3)) = List(1,2,3)
+(car '(1 2 3)) = 1
+(cdr '(1 2 3)) = List(2,3)
+(null? '(2 3)) = 0
+(null? '()) = 1
+
+faculty(10) = 3628800
+faculty(10) = 3628800
+foobar = List(a,bc,def,z)
+