Free Pascal - Less than: <

Less than operator is a logical operator that is used to compare two numbers.

<

Description

par1 < par2
Used keywords: <

Input


Output

  • Result - Logical value Returns a true, if the first number is less than the second, otherwise false.
Note: It works over all types of numbers.

Examples

Free Pascal

Less than the possible of use:
a := 5 < 10;       // a = true 
b := 8 < x; 
if y < 100 then  
  inc(x); 

Free Pascal

Even one example in what situations we can use the operation less than:
x < y
10 < f(5)
(i and j) < 128

Free Pascal

Other pieces of example codes:
while i<20 do
begin
 i:= i+2;
 if i=16 then
 begin
    continue
 end;
 inc(x); 
end;
if  y < 100 then  
   inc(x);
not i <10
a>1 or a<100
if i < 10 then i := 10 else i:=1;
10 >a or a<5

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