(set symbol expression)
The set function sets the value of a quoted symbol to an expression and returns that value. The first argument must be a symbol.
Examples
: (set 'x 'y)
Y
: (set x 5)
5
: !y