1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/*!
# `[LET] <variable>=<expression>`

## Purpose
Assign the result of expression to variable.

## Remarks
The word `LET` is optional.

## Example
```text
10 A = 10
20 PRINT A
30 LET A = 20
40 PRINT A
RUN
10
20
```

*/