Hi,
There's something I'm currently not understanding about the != operator.
From the doc:
val x != 3; // new variable x now equals 3
x != 3; // x is 3 (from above): success
That doesn't sound logic to me but I may be missing some background knowledge. Can somebody enlighten me ?