Skip to content

LET

Category: Statement
Syntax: [LET] variable = expression

Description

Assigns the value of an expression to a single-letter variable (A through Z).

See also

Example

10 LET A = 42
20 LET B = A * 2
30 PRINT(B)