Purpose
"Greater than or equal to" compares the values of two expressions of the same or similar types.
If the first expression is greater 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 greater than or equal to 5"
|