[Message Prev][Message
Next][Thread Prev][Thread Next][Message
Index][Thread Index]
[OT] Coding style nazis
Ok,
Totally OT, but there you go.
I'm looking for some decent resources that will explain why my coding style
is "wrong", anyone have any?
I'm referring to stuff like why:
for (my $x=0;$x<@_;$x+=2) {
somestuff;
somestuff;
somestuff;
somestuff;
somestuff;
}
is better than:
for (my $x=0; $x < @_; $x+=2)
{
somestuff;
somestuff;
somestuff;
somestuff;
somestuff;
}
(assuming yahoo doesn;t make a right old pigs ear of it)
Andy
UKHA_D Main Index |
UKHA_D Thread Index |
UKHA_D Home |
Archives Home
|