LET - source-solutions/HELP GitHub Wiki
[LET] name = expression
Assigns the value of expression
to the variable or array element name
.
-
name
is a variable that may or may not already exist. - The type of
expression
matches that ofname
: that is, all numeric types can be assigned to each other but strings can only be assigned to strings.
name
and expression
are not of matching types: Type mismatch.