sicp/2_4.sch

9 lines
125 B
Plaintext
Raw Permalink Normal View History

2021-05-18 22:00:58 +00:00
(define (cons x y)
(lambda (m) (m x y)))
(define (car z)
(z (lambda (p q) p)))
(define (cdr z)
(z (lambda (p q) q)))