Object Pascal - Relational operators

The main use of the relational operators is in control of conditional statements. thanks to these, we can decide which direction to continue the conditional statements, or for example, how many iterations of the cycle need to perform.
less than
par1 < par2
greater than
par1 > par2
Equal to
par1 = par2
Not equal to
par1 <> par2

Object Pascal

Other pieces of example codes:
if x>5 then
  y := x / $a;  // y = 1
(j + 10) <= 128
(i and j) <> 64
(i=10)
(j + 8) >= 3
10 >a or a<5
Languages: en hu cz sk