diff options
Diffstat (limited to 'robust_test.scm')
-rw-r--r-- | robust_test.scm | 13 |
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) |