Eric Wilhelm wrote:
# from David Landgren
# on Monday 22 May 2006 09:52 am:

print join( ' ', map { "(@{$p->[$_]})" } 0..$#$p ), "\n";

Stylistically, I think it is much clearer to not use the index if you don't need it.

  print join(' ', map { "(@$_)" } @$p ), "\n";

Oh duh! Yes very nice. I plead Work in Progress.

Thanks,
David
--
hope still, a little resistance always maybe stubborn tiny lights vs. clustering darkness forever ok? -- g!ybe

Reply via email to