| Next | Program
Repair Shop ![]() |
7 |
We do not want these two blocks to score differently:
# Block 1
unless ($page->param('round')) {
$round = 0;
}else {
$round = $page->param('round');
}
# Block 2
unless ($page->param('round')) { $round = 0 }
else { $round = $page->param('round') }
They both count as 3 lines
| Next | ![]() |
Copyright © 2002 M. J. Dominus |