in reply to Re^2: Break an array. I think.
in thread Break an array. I think.
It looks to me like you introduced @x so that splice wouldn't destroy the original array, but then opted not to use splice after all.for my $i (0 .. $#datan/3) { print join(' ', @datan[$i*3 .. $i*3 + 2]), "\n"; }
|
|---|