![]() |
| ||||||
Navigation |
Synopsis Greater than operator on string values.
Syntax
Exp1 > Exp2
Types
Description Yields
true if the string value of Exp1 is strictly lexicographically greater
than the string value of Exp2 , and false otherwise.
Examples
rascal>"abcdef" > "abc"; bool: true rascal>"defghi" > "abcdef"; bool: true rascal>"a" > "abc"; bool: false ![]() |