Skip to content
Turtle Kitty edited this page Aug 9, 2015 · 2 revisions

set!

Mutate the value a name points to. Said name must have been previously bound by def.

(def x 5)
x -> 5
(set! x 7)
x -> 7
(set! y 9) -> ERROR, undefined symbol
Clone this wiki locally