Skip to content
TurtleKitty edited this page May 10, 2019 · 2 revisions

def

Bind a name (represented by an unquoted symbol) to a value.

(def x 5)                        ; 5
(def square (proc (v) (* v v)))  ; (proc (v) ...)
(square x)                       ; 25
Clone this wiki locally