14 lines
318 B
Markdown
14 lines
318 B
Markdown
# LET statement
|
|
LET is used to assign a value to a variable.
|
|
value can be as complex as possible and can contain complex expression
|
|
|
|
syntax
|
|
```
|
|
line number LET variable_name = expression
|
|
```
|
|
|
|
expression can invoke other functions,eg
|
|
|
|
10 LET x = 2 + 3 + ADD(2,3)
|
|
|
|
ANY assignments within DVM can only be done using LET |