Command STORE Foundation

Assigns a value to one or more variables.

Syntax
STORE <Expression> TO <VarName,...>
<VarName1> := [ <VarName2> := ...] <Expression>
Parameters
<Expression>
<Expression> is an expression of any data type whose value is assigned to the specified variables.
<VarName,...>
<VarName,...> is a comma separated list of variable names to which the value of <Expression> is assigned. The variables can belong to any storage class. When a variable does not exist, it is created as a PRIVATE variable.
Description

The command STORE exists only for compatibility reasons and should no longer be used. In place of STORE, the inline assignment operator (:=) should be used.

Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.