in reply to Re^2: Sorting array with multiple values per keys
in thread Sorting array with multiple values per keys
Loop variables in foreach loops must be scalars, but scalars can be array references.foreach $Elements (@Array) { print $Elements->[0] . 'x' . $Elements->[1]; }
|
|---|