Help for this page

Select Code to Download


  1. or download this
    $_ = <I1>;   # read column headings
    my @columns= split /,/;
    
  2. or download this
    use strict;
    my %data;
    ...
    for (sort keys %data) {
        print $data{$_}\n";
    }