- or download this
my (@new_lot, @cat_one, @A_services);
my @table = qw (
...
5 R 113
6 RC 121
);
- or download this
while (@table) {
push @new_lot, shift @table;
push @cat_one, shift @table;
push @A_services, shift @table;
}
- or download this
my @table = (
[ qw( 1 R 182 ) ],
...
[ qw( 5 R 113 ) ],
[ qw( 6 RC 121 ) ],
);