in reply to Re: Another reduce bug?
in thread Another reduce bug?
Ha! Thanks for the confirmation. It is a strange one. Following on from your use an array solution, I tried the ol' put it in a list context trick--which is probably a erroneous name, but it serves-- and voila. That also fixes it. Maybe an interation between two different optimisations? Time for a perlbug I think.
my @r; reduce{ print "$a:$b"; push @r, [ $a, $b ]; $b; } () = split ' ', $s;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Another reduce bug? (()=)
by tye (Sage) on Aug 16, 2007 at 03:51 UTC |