Visual Basic - 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

Visual Basic .NET

Other pieces of example codes:
if x>&Habc then
  y = x / &Ha    ' y = 466
end if
if i=5 then
    exit do
end if
if y<5 then
   y = y/ 3.14    ' y = 1.234
end if
a = 4 >= 2
b = x <= 12
y <> 25
Languages: en hu cz sk