racket/collects/tests/stepper/constructor-redexes.rktl
2010-05-01 09:58:16 -06:00

18 lines
157 B
Racket

(cons 3 (cons 1 empty))
(cons 1 2)
(list 1 2 3)
(define-struct a (b))
(make-a 3)
(make-a 4 3 5)
(make-b 32)
(make-b 3 4 5)
(define-struct b (c d e))