All BASIC commands Section 4-2
86
4-2-7 = (Assignment)
/i
4-2-8 <> (Is not equal to)
/i
4-2-9 > (Is greater than)
/i
Type Mathematical function
Syntax variable = expression
Description The operator = assigns the value of the expression to the variable.
Arguments • variable
A variable name.
• expression
Any valid BASIC expression.
Example var = 18
Assigns the value 18 to the variable var.
See also N/A
Type Mathematical function
Syntax expression1 <> expression2
Description The operator <> returns TRUE if expression1 is not equal to
expression2, otherwise it returns FALSE.
Arguments • expression1
Any valid BASIC expression.
• expression2
Any valid BASIC expression.
Example IF a <> 10 THEN GOTO label1
If variable a contains a value not equal to 10, program execution contin-
ues at label label1. Otherwise, program execution continues with the
next statement.
See also N/A
Type Mathematical function
Syntax expression1 > expression2
Description The operator > returns TRUE if expression1 is greater than
expression2, otherwise it returns FALSE.
Arguments • expression1
Any valid BASIC expression.
• expression2
Any valid BASIC expression.
Example IF a > 10 THEN GOTO label1
If variable a contains a value greater than 10, program execution contin-
ues at label label1. Otherwise, program execution continues with the
next statement.
See also N/A