LET

From QB64 Phoenix Edition Wiki
Revision as of 16:38, 20 April 2022 by BigRon55 (talk | contribs) (Created page with "The LET is a useless statement designed by cavemen when they started programming. {{PageSyntax}} : '''[LET]''' {{Parameter|variable}} = {{Parameter|expression}} {{PageDescription}} * {{InlineCode}}LET a = 12{{InlineCodeEnd}} is the same as {{InlineCode}}a = 12{{InlineCodeEnd}}, but wastes 4 extra bytes of program space. ''Notes:'' LET is '''optional''', it's the only keyword where the '''entire keyword''' is optional :-) {{PageSeeAlso}} * Cavemen * [...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

Notes: LET is optional, it's the only keyword where the entire keyword is optional :-)


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link