1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 21:15:15 +00:00
qb64/internal/help/LET.md

16 lines
403 B
Markdown

The [LET](LET) is a useless statement designed by [cavemen](cavemen) when they started programming.
## Syntax
> [**LET**] variable = expression
## Description
* `LET a = 12` is the same as `a = 12`, but wastes 4 extra bytes of program space.
* [LET](LET) is **optional**, it's the only keyword where the **entire keyword** is optional :-)
## See Also
* [Cavemen](Cavemen)
* [Variable](Variable)