in reply to Re: need advice: Perl code layout, long line lengths
in thread need advice: Perl code layout, long line lengths
Thanks all!
@smiffy - good question.
The code written by me and only I maintain it, but I try to leave it readable as possible for others. I cannot image somebody will print my code on the paper (so I never do).
@Perlbotics: I thought about replacing with variables too, it could be an option, but it could decrease reading speed too. Thanks for idea replace only a part of parameter.
I see many of you can accept 132/140 width, so I will do the same, and split the parameter only if it longer then 140 characters.
Thanks for quick help!