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.Basic
Other pieces of example codes:if y > 32 then c=-1 end if
if i=5 then exit do end if
a = 4 >= 2
y <> 25
a = 5 < 10
(j + 10) <= 128
Relational operators in another programming language: