Help for this page

Select Code to Download


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