in reply to
How Much Is Too Much (on one line of code)?
Perl Best Practices, Chapter 6: Control Structures
Use block
if
, not postfix
if
.
Reserve postfix
if
for flow-of-control statements.
--
print map{chr}unpack(q{A3}x24,q{074117115116032097110111116104101114032080101114108032104097099107101114})
Comment on
Re: How Much Is Too Much (on one line of code)?
In Section
Seekers of Perl Wisdom