LET: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "Building Blocks Categories" to "Building Blocks") |
m (1 revision imported) |
Latest revision as of 03:04, 11 October 2023
Description
- This command is used to assign a value to a variable name.
- It is obsolete.
Syntax
- LET Variable = Value
Hints
- It is obsolete means here it could be safely omitted, that is
- Variable = Value
- will work just as good.
- Variable = Value
Example
LET Number = 1 LET String$ = "Hello"
Useful Procedures
' Place a useful function or sub using this keyword here