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