Help for this page

Select Code to Download


  1. or download this
          %hash={"$file"=>@final_data}; #this hash assignment +doesn't wor
    +k
          close (FILE);
       }
       @values=values(%hash);
    
  2. or download this
          $hash{$file} = \@final_data;
          close (FILE);
       }
       @values=values(%hash);
    
  3. or download this
    #!/usr/local/bin/perl
     
    ...
    # which is keyed by filename. Each filename points to an
    # array reference contained the values in the 4th column,
    # starting at the 15th line. What do you want to do with it?