![]() |
| ||||||||||||
Navigation |
Synopsis Less than operator on numeric values.
Syntax
Exp1 < Exp2
Types
Description Yields
true if the value of Exp1 is numerically less than the value of Exp2 , and false otherwise.
Examples
rascal>13 < 12 bool: false rascal>12 < 13 bool: true rascal>13.5 < 12 bool: false rascal>12.5 < 13 bool: true Questions
Question [1].
![]() ![]()
Question [2].
![]() ![]()
Question [3].
![]() ![]()
Question [4].
![]() ![]()
Question [5].
![]() ![]() ![]() |