![]() |
| ||||||
Navigation |
Synopsis Not equal operator on lists.
Syntax
Exp1 != Exp2
Types
Description Yields
true if both arguments are unequal lists and false otherwise.
Examples
rascal>[1, 2, 3] != [3, 2, 1]; bool: true rascal>[1, 2, 3] != [1, 2, 3]; bool: false Questions
Question [1].
![]() ![]()
Question [2].
![]() ![]()
Question [3].
![]() ![]() ![]() |