9 lines
123 B
Common Lisp
9 lines
123 B
Common Lisp
; basics
|
|
|
|
; define a variable
|
|
(def a 25)
|
|
(echo a)
|
|
|
|
; define a function
|
|
(defn add-two (a) (add 2 a))
|
|
(echo (add-two 4)) |