LET

From Liberty BASIC Family
Revision as of 14:25, 14 September 2020 by StPendl (talk | contribs) (Text replacement - "Building Blocks Categories" to "Building Blocks")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Supported in Just BASIC Supported in Liberty BASIC Not supported in Liberty BASIC 5 Not supported in Run BASIC

Description

This command is used to assign a value to a variable name.
It is obsolete.

Syntax

  1. LET Variable = Value

Hints

It is obsolete means here it could be safely omitted, that is
Variable = Value
will work just as good.

Example

LET Number = 1
LET String$ = "Hello"

Useful Procedures

' Place a useful function or sub using this keyword here