Skip to content
Turtle Kitty edited this page Jan 29, 2016 · 1 revision

del!

Destroy a name, removing it from the environment. Said name must have been previously bound by def.

(def x 5)
   -> 5

x  -> 5

(del! x)
   -> null

x  -> ERROR, undefined symbol

(del! x)
   -> ERROR, undefined symbol
Clone this wiki locally