mumble jumbling.

Tony Bowden tony at kasei.com
Thu Jan 3 04:35:02 CST 2002


On Thu, Jan 03, 2002 at 09:51:49AM +0000, Stray Toaster wrote:
> print "$_ " foreach @ary;
> print "\n\n";
> print "$_ " foreach $jumble->(@ary);
> print "\n\n";    
> ick. Any better suggestions?

ick indeed.

Try:

  print "@ary\n\n";
  print join(" ", $jumble->(@ary)) . "\n";

You don't even need any fancy $" trickery here, as you're using a
space...

Oh, you meant better suggestions for the *shuffle*?? Well, Leon can
handle that for you ...

Tony




More information about the Belfast-pm mailing list