Community QBasic

Rebooting the QBasic we all know and love!


Project maintained by Cory Smith

LET

Assigns a value to a variable.

Syntax

[LET] variable = expression

Comments

LET is an optional keyword used in assignment statements to assign a value to a variable.

Example

LET a = 5
'equivalent assignment without LET
a = 5