lasp/examples/lambda.lisp
2024-05-03 13:43:17 -05:00

8 lines
88 B
Common Lisp

(define a
(λ ()
(+ 1 2 3)))
(define b
(lambda ()
(+ 1 2 3)))