Files
sc/examples/test.lisp

7 lines
88 B
Common Lisp

(define x 1)
(define incr 1)
(define inc (lambda (n) (sum n incr)))
(display (inc x))