http://www.perlmonks.org?node_id=999544


in reply to Re^2: 78/80 chars perl line still a meaningful rule
in thread 78/80 chars perl line still a meaningful rule

For 'confess', it is trivial:

% perl -MCarp=confess -e"confess 'this ', 'is split'" this is split at -e line 1

If it isn't something that can deal with a list of strings, then I use join the vast majority of the time (because '.' has lousy precedence for such, 'sprintf' quickly leads to action-at-a-distance, '<<' can't be sanely indented, etc.).

- tye