Relational Operators

The relational operators  <   >   <=   >=   =   !=   each produce a 1 (true) or a 0 (false) result.
        8.8 < 8.7   -- 8.8 less than 8.7 (false)
        -4.4 > -4.3 -- -4.4 greater than -4.3 (false)
        8 <= 7   -- 8 less than or equal to 7 (false)
        4 >= 4   -- 4 greater than or equal to 4 (true)
        1 = 10      -- 1 equal to 10 (false)
        8.7 != 8.8  -- 8.7 not equal to 8.8 (true)
        {1,2,3} = {4,5,6} -- {1,2,3} equal to {4,5,6} (false)
        {7,8,9} = {7,8,9} -- {7,8,9} equal to {7,8,9} (true)
As we will soon see you can also apply function-style equivalents to entire sequences to yield lists of true/false.

Note that the last two examples are incompatible with RDS Eu/OpenEuphoria, which produce the same results as the phix-only sq_eq() builtin on those systems.