EDIT:
Here are how I use operators in Silver Creator.
OPEN CARD// CHANGE THE NUMBERS TO TRY DIFFERENT PROGRAMS
// SET a TO ZERO
LET a = 0
// ADD FIVE TO THE VARIABLE a
LET a = a + 5
// SUBTRACT ONE FROM THE VARIABLE a
LET a = a - 1
// MULTIPLY THE VARIABLE a BY 5
LET a = a * 5
// DIVIDE THE VARIABLE a BY 2
LET a = a / 2
// DISPLAYS THE NUMBER AS A STR SO YOU CAN VIEW IT AS TEXT
PRINT "variable a is the Number " + STR$(a)
// DISPLAY WHERE THE VARIABLE a IS RELATIVE TO 5
IF a > 5 THEN
PRINT "variable a is Greater than 5"
END IF
IF a < 5 THEN
PRINT "variable a is Less than 5"
END IF
IF a = 5 THEN
PRINT "variable a is the number 5"
END IF
OLD POSTOperators in Silver Creator
Im using > and < and bugs happen. Are these the correct operators for greater than and less than?
Is there only > or only the <
ANSWERMy old code had bugs that did not have to do with the operators.
You can use both > and < in Silver Creator