(define x (cons 3 '())) (write x)
Alternatively, you can define null
first:
(define null '()) (define x (cons 3 null)) (write x)
(define x (cons 3 '())) (write x)
Alternatively, you can define null
first:
(define null '()) (define x (cons 3 null)) (write x)