Navigation
Synopsis Greater than or equal operator on numeric values.
Syntax Exp1 >= Exp2
Types
Exp1 Exp2 Exp1 >= Exp2
int int bool
int real bool
real real bool
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].
The type of -18 >= -19 is

Question [2].
The type of 6.7968644462156200 >= -2.84448787883791360 is

Question [3].
The type of -2 >= -2.45782623911296120 is

Question [4].
The type of -12.22410169867408120 >= 4.0759429838682520 is

Question [5].
14.9672309144659720 >= -14.78714443779997720 == 



Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.