Rascal Language ReferenceExpressionsValuesListList EqualOn this pageList Equalrascal-0.40.17SynopsisEquality on lists.SyntaxExp₁ == Exp₂Types//Exp₁Exp₂Exp₁ == Exp₂list[T₁]list[T₂]boolDescriptionYields true if both arguments are equal lists and false otherwise.Examplesrascal>[1, 2, 3] == [1, 2, 3];bool: truerascal>[1, 2, 3] == [3, 2, 1];bool: false