set!

(set! NAME EXPRESSION)
A 'set!' expression contains a name and an expression. The name must refer to a variable that is already bound. The set! expression first evaluates the sub-expression and then changes the binding of the name so that it now refers to the value of the expression.

Advanced Student Table of Contents