Small company logo:
   History
 
Advertising banner:
 
 <=
 
Purpose
"Less than or equal to" compares the values of two expressions of the same or similar types.
If the first expression is less than or equal to the second, TRUE is returned; otherwise, FALSE is returned.
Syntax
Expression1 <= Expression2
Example
If num <= 5 Then
        Print "The value of 'num' is less than or equal to 5"