LET: Difference between revisions

From Liberty BASIC Family
Jump to navigation Jump to search
m (Text replacement - "Building Blocks Categories" to "Building Blocks")
 
m (1 revision imported)
 
(No difference)

Latest revision as of 03:04, 11 October 2023

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