LET statement

Syntax

[LET] variable = expression

Description

Use the LET statement to assign the value of expression to variable. See assignment statements for more information about assigning values to variables.

Example

LET A=55
LET B=45
LET C=A+B
LET D="55+45="
LET E=D:C
PRINT E

This is the program output:

55+45=100