LET
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