Stefan Hornburg (Racke)

Perl Coding Conventions

2008-02-18

Instead of


if($foo)

{

myfunction ($bar)

} else {

$counter [$i]++;

}

use:


if ($foo) {

myfunction($bar);

}

else {

$counter[$i]++;

}