aboutsummaryrefslogtreecommitdiff
path: root/robust_test.scm
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-08 00:11:39 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-08 00:11:39 +0800
commit56a85b5111751f5947579b5ee5cc92bdebb799c4 (patch)
treea19eece360f73ad75a67a9b011061d3691f40115 /robust_test.scm
parent7ffab5bc462dafe0c48c3e1be0ae2112adf7a159 (diff)
added more list-specific procs
Diffstat (limited to 'robust_test.scm')
-rw-r--r--robust_test.scm13
1 files changed, 13 insertions, 0 deletions
diff --git a/robust_test.scm b/robust_test.scm
index 08976a0..637d9cd 100644
--- a/robust_test.scm
+++ b/robust_test.scm
@@ -129,6 +129,19 @@ t
(list . 0)
(list 0 . 0)
+(length)
+(length 1 2)
+(length '( 1 . 2))
+(length '())
+(length '( 1 2 3 ))
+
+(append)
+(append '())
+(append '(1 2) 3)
+(append '(1 2) '(3 4) 5)
+(append '(1 2) 3 '(1))
+(append '() '() '() '(1 2) 3)
+
(display)
(display 1 2)
(display . 0)