Help for this page

Select Code to Download


  1. or download this
    use strict;                   # Warns about mistakes (important)
    
    my @data;                     # Data storage variable
    ...
    }
    
    close (DAT);
    
  2. or download this
    for (my $i = 0; $i < @{$data[0]}; $i++)
    {
         print "$data[0][$i],$data[1][$i]\n";
    }