Functions Documentation
View Function Edit Function
Name setq
Syntax (setq variable expression)
Argument List variable: The variable you want to set.
expression: The thing you want to store in the variable.
Returns expression: Whatever the expression is.
Category store
Description Stores the expression in the variable.
Example
(setq notFound True)


Stores True in the variable notfound.
Comment Used over 3k times in the xml. Even the trivial code uses this.