![]() |
| ||||||
Navigation |
Synopsis Greater than or equal operator on tuple values.
Syntax
Exp1 >= Exp2
Types
Description Yields
true if
false .
Examples
rascal><1, "abc", true> > <1, "abc", true>; bool: false rascal><1, "def", true> > <1, "abc", true>; bool: true ![]() |