1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/LET.md
2022-12-24 19:12:43 -06:00

403 B

The LET is a useless statement designed by 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 is optional, it's the only keyword where the entire keyword is optional :-)

See Also