geqsign INDEX

>= _ _ _ GEQSIGN _ _ _ _ _ _ _ _ _ _ _ _ operator

>= is an infix binary comparison operator, which returns true if its first argument is greater than or equal to its second argument.

syntax:

<expression> >= <expression>

<expression> must evaluate to an integer or floating-point number.

examples:


if (3 >= 2) then yes; 

  yes 


a := 15; 

  A := 15 


if a >= 20 then big else small;
 

  small 

The binary comparison operators can only be used for comparisons b etween numbers or variables that evaluate to numbers. The truth values returned by such a comparison can only be used inside programming constructs, such as if...then...else or repeat...until or while...do.