setq

(setq symbol1 value1 [symbol2 value2] ... )

The setq function sets the value of a symbol to an expression and returns that value.

You can supply multiple pairs of arguments for symbols.. In this case, the function returns the value of the last assignment.

Examples

: (setq a 35)

: (setq b "abc")

: (setq c '(1 2 3))