lasp/examples/define.lisp

3 lines
58 B
Common Lisp
Raw Permalink Normal View History

2024-05-03 12:49:43 -05:00
(define a 10)
(define b 20)
2024-05-03 13:43:17 -05:00
(define c (lambda () (+ a b)))