Help for this page

Select Code to Download


  1. or download this
    my $files = {
       filename1 => {
    ...
                  | and so on...
         }
    }
    
  2. or download this
       foreach my $file ( keys %$files ){
            foreach my $field ( keys %{$files->{$file}}{
            |
            do something here 
            |
    
  3. or download this
    package MyDataFile;
    
    ...
    
    
    1;
    
  4. or download this
    use strict;
    use MyDataFile;
    ...
       | 
       etc.
        |