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