sicp/2_26.sch

7 lines
117 B
Plaintext
Raw Normal View History

2021-08-30 21:55:52 +00:00
(define x (list 1 2 3))
(define y (list 4 5 6))
(define a (append x y))
(define b (cons x y))
(define c (list x y))