6 lines
69 B
Common Lisp
6 lines
69 B
Common Lisp
(define x 1)
|
|
|
|
(define inc (lambda (n) (sum n 1)))
|
|
|
|
(display (inc x))
|