whalesong/tests/more-tests/printing.expected
2011-09-20 17:50:14 -04:00

14 lines
215 B
Plaintext

(list 1 2 3)
(list "hello" "world")
(list 'hello 'world)
(cons 1 2)
(list 1 2 3)
(cons 1 (cons 2 (cons 3 4)))
(list)
'hello
(box 'hello)
(vector 'hello 'world)
(person 'danny 32)
(person "jerry" 32)
#0=(cons 1 #0#)