rem COND1
rem This program illustrates the use of conditions
rem Any expression between the IF and THEN which is greater
rem than 0 is evaluated as true.  That means that the statements
rem after the THEN is executed.

a = 2
b = 4
print a < b
if a < b then print "A is less than B"
print a <= b
if a <= b then print "A is less than or equal to B"
print a > b
if a > b then print "A is greater than B"
print a >= b
if a >= b then print "A is greater than or equal to B"
print a < b
if a < b then print "A is less than B"
print a = b
if a = b then print "A is equal to B"
