Email or username:

Password:

Forgot your password?
Devine Lu Linvega

*looks up operator precedence table because is coding in some cloddish language where you just have to guess what ever which way things are supposed to happen*

7 comments
hpincket

@neauoire in these cases I usually add unnecessary parens where I want them. Is that an option?

Devine Lu Linvega

@hpincket I ended up using parens, but it makes the code look very funny. Context: In erlang, "catch" happens after ==, but before = !

Which, is utterly barbaric.

hpincket

@neauoire as long as some linter doesn’t complain about my unnecessary parens, I’m happy

Helge Rausch

@neauoire @hpincket Why? You are reading that as `=` and `!` and not as a single "not equal" operator?

Go Up