|
| |||||||||||||
| Navigation |
Synopsis Greater than or equal operator on numeric values.
Syntax
Exp1 >= Exp2
Types
Description Yields
true if the value of Exp1 is numerically greater than or equal to the value of Exp2, and false otherwise.
Examples
rascal>13 >= 12 bool: true rascal>12 >= 13 bool: false rascal>13.5 >= 12 bool: true rascal>12.5 >= 13 bool: false Questions
Question [1].
Question [2].
Question [3].
Question [4].
Question [5].
|