CONTENTS | INDEX | PREV | NEXT

SYNTAX            : RANGE ;C CONDITION

RESULTING ARGUMENT: 1 (if condition is TRUE)
                    0 (if condition is FALSE)

FUNCTION          : Compare the two values of the range and return the
                    result of the comparison.

RANGE             : <val 1>,<val 2>

EXAMPLE           : q1 , 100 ;cEQ < :m Q1 is 100 ESC >
                    Will display Q1 is 100 in the text area if the
                    (numerical) contents of register 1 is 100.

NOTE 1            : The result of the test (the resulting argument) is
                    meant to control the execution of an iteration. With
                    a TRUE result, the iteration will be executed once,
                    with a FALSE result never.

NOTE 2            : The type of test to perform must immediately follow
                    the command. Six different tests are available:
                    EQ: TRUE if val 1         EQuals           val 2
                    NE: TRUE if val 1     does Not Equal       val 2
                    LE: TRUE if val 1  is Lower than or Equal  val 2
                    LT: TRUE if val 1      is Lower Than       val 2
                    GE: TRUE if val 1 is Greater than or Equal val 2
                    GT: TRUE if val 1     is Greater Than      val 2

MATRIX