LET - source-solutions/HELP GitHub Wiki

LET


[LET] name = expression

Assigns the value of expression to the variable or array element name.

Parameters

  • name is a variable that may or may not already exist.
  • The type of expression matches that of name: that is, all numeric types can be assigned to each other but strings can only be assigned to strings.

Errors

name and expression are not of matching types: Type mismatch.

⚠️ **GitHub.com Fallback** ⚠️