LET
Jump to navigation
Jump to search
LET is a (more or less) needless statement designed for the very early BASIC dialects.
Syntax
- LET variable = expression
Description
- LET a = 12 is the very same as a = 12, but wastes 4 extra bytes of program space.
- Notes
- LET is optional, it's the only keyword where the entire keyword is optional.😀
See also