Module LET

Source
Expand description

§[LET] <variable>=<expression>

§Purpose

Assign the result of expression to variable.

§Remarks

The word LET is optional.

§Example

10 A = 10
20 PRINT A
30 LET A = 20
40 PRINT A
RUN
10
20