![]() |
| |||||||||||||||||||||
Navigation |
Synopsis The implication operator on Boolean values.
Syntax
Exp1 ==> Exp2
Types
Description The implication operator on Boolean values defined as follows:
==> operator, the result is true if Exp1 evaluates to false , otherwise Exp2 is evaluated to determine the result.
Examples
rascal>false ==> true;
bool: true
![]() |