*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*
*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 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. @neauoire according to the table in section 8.25 http://erlang.org/documentation/doc-6.0/doc/reference_manual/expressions.html they both apply before catch |
@neauoire in these cases I usually add unnecessary parens where I want them. Is that an option?