LET
Format: LET
Supported by: COMX BASIC V1.00, Floating Point BASIC 2.2, Pecom 32 BASIC, Pecom 64 BASIC 1.0 and 4.0, Quest Super BASIC 1.4, 3.0, 5.0 and 6.0, RCA BASIC3 V1.1, Telmac SBASIC v 24.3
Similar commands: -
The assignment symbol is the equal sign "=". When this symbol is used for the purpose of assignment, it takes on the meaning "takes the value of" rather than "equals". Some examples are:
LET A=5 LET B=B+A*2
The keyword LET is optional and may be omitted. The second example may be interpreted as: evaluate B+A*2 and use the result to replace B.