Pascal - Greater than or equal to: >=

Greater than or equal to operator is a logical operator that is used to compare two numbers.

>=

Description

par1 >= par2
Used keywords: >=

Input


Output

Note: It works over all types of numbers.
Compatible programing languages:
Object Pascal | Free Pascal

Examples

Pascal

Greater than or equal to the possible of use:
a := 4 >= 2;         { a = true}
if  x >= 12 then
   while  y >= 0 do  
      dec(y);

Pascal

Even one example in what situations we can use the operation greater than or equal to:
x >= y / 5
2 >= f($AF)
(j + 8) >= 3

Pascal

Other pieces of example codes:
$ff >= y

You can find it in the following collections: relational operators
Languages: en hu cz sk