When you write equality comparisons, get in the habit of putting the constant on the left side.
You may have intended that the word 'equality' include them, but this advice applies also to 'not equal' comparisons: someVariable =! true is usually a valid expression, so
if (someVariable =! true) { /* BUG!! */ }
is a valid statement.
In reply to Re: Hoss'ss Last Words
by AnomalousMonk
in thread Hoss'ss Last Words
by hossman
For: | Use: | ||
& | & | ||
< | < | ||
> | > | ||
[ | [ | ||
] | ] |