LET: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:


{{PageDescription}}
{{PageDescription}}
* {{InlineCode}}LET a = 12{{InlineCodeEnd}} is the very same as {{InlineCode}}a = 12{{InlineCodeEnd}}, but wastes 4 extra bytes of program space.
* {{InlineCode}}{{Cl|LET}} a = 12{{InlineCodeEnd}} is the very same as {{InlineCode}}a = 12{{InlineCodeEnd}}, but wastes 4 extra bytes of program space.
* That said, [[LET]] is '''optional''', it's the only keyword where the '''entire keyword''' is optional.😀
* That said, [[LET]] is '''optional''', it's the only keyword where the '''entire keyword''' is optional.😀


Line 16: Line 16:


{{PageNavigation}}
{{PageNavigation}}
[[Category:Final]]

Revision as of 20:22, 13 June 2022

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.
  • That said, 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