tests on list stuff

This commit is contained in:
Danny Yoo 2011-08-31 16:04:13 -04:00
parent baa268bce9
commit 330cc75f12
2 changed files with 15 additions and 0 deletions

View File

@ -1,2 +1,9 @@
(1 2 3)
("hello" "world")
true
true
false
true
hello
()
world

View File

@ -2,3 +2,11 @@
'(1 2 3)
(list "hello" "world")
(empty? empty)
(empty? '())
(cons? '())
(cons? '(hello))
(first '(hello))
(rest '(hello))
(second '(hello world))