°
Operators with priority 3: >, >=, <=, <, ==, !=
All comparison operators have the third lowest priority. They return 1 if the comparison is true, 0 otherwise. Note that '!=' stands for 'is not equal to'.
a = 2 b = 3.000 Print (a>b) 0 Print (a<b) 1 Print (a==b) 0 Print (a!=b) 1