in reply to Re^2: improving the aesthetics of perl code
in thread improving the aesthetics of perl code
If a print statement is a bit unwieldy I often use join to get it to read better.
I would have considered $ping instead of $p.print join "\n", '<center>', '<h3>MSHIP - my status of host IP's</h3>', '</center>';
foreach $_(@TMP)
could be written as
for (@TMP)
} else {
Is that what they call cuddled?
It's controversial but I put the else on a new line.
All very minor.
|
|---|