http://qs1969.pair.com?node_id=114363


in reply to Re: Make Love, not war...
in thread Make Love, not war...

Perhaps the choice of using the code the programmer did is based on the aesthetic layout?

While you are at it? Why bother reassigning the result of chr to $_? Just drop that line alltogether to get  for(@h1){ print chr; } and of course if your decision is to be based on the number of characters you can go to print chr for(@h1); but getting the smallest WTDI is golf and not obfuscation.

Replies are listed 'Best First'.
I was trying to follow a structure similar to the original script...
by thunders (Priest) on Sep 25, 2001 at 17:27 UTC
    I'd personally use:
    print map chr, @h1;
    But to each their own. I was just offering some advice.