Hacker News new | ask | show | jobs
by unsnap_biceps 191 days ago
Which language(s?) have || before !=/==?
1 comments

Likely they're confusing it with bitwise OR, since in C, a | b == c parses as a | (b == c), causing widespread pain.