We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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