Same, and for people, like me, who use a lot of Unicode characters, make ←
(for example, same as <-
) a natural alias for this :=
. I also always feel strange when an equality test is longer than an inequality one in my code (≠
versus ==
), making me often choose to test inequalities to avoid mistakes (confusion with =
)…
1 Like