9 lines
68 B
Scheme
9 lines
68 B
Scheme
(define (add-1 x) (+ 1 x))
|
|
|
|
(define g add-1)
|
|
|
|
g
|
|
|
|
(define h g)
|
|
|
|
(h 4) |