Navigation
Synopsis Greater than or equal operator on datetime values.
Syntax Exp1 >= Exp2
Types
Exp1 Exp2 Exp1 >= Exp2
datetime datetime bool
Description Yields true if the datetime value of Exp1 is later in time than the datetime value of Exp2 or if both values are equal, and false otherwise.
Examples
rascal>$2011-07-15$ >= $2010-07-15$;
bool: true
rascal>$2010-07-15$ >= $2010-07-14$;
bool: true
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.