basic/doc/statements/
let.rs

1/*!
2# `[LET] <variable>=<expression>`
3
4## Purpose
5Assign the result of expression to variable.
6
7## Remarks
8The word `LET` is optional.
9
10## Example
11```text
1210 A = 10
1320 PRINT A
1430 LET A = 20
1540 PRINT A
16RUN
1710
1820
19```
20
21*/