Help for this page

Select Code to Download


  1. or download this
    my @Files;
    my %Table;
    ...
            $Table{$category}[@Files] = $val; # Store into slot in table
        }
    }
    
  2. or download this
    @Files = ('file1', 'file2');
    %Table = (
    ...
        'A' => [ 12,    34   ],
        'B' => [ 152,   567  ],
    );