Help for this page

Select Code to Download


  1. or download this
    my @aBuildings;
    while (my $line=<MYFILE>) {
    ...
      };
      push @aBuildings, $hLine;
    }
    
  2. or download this
      foreach my $hLine (sort { $a->{name} cmp $b->{name} } @aBuildings) {
        #print out contents of $hLine
      }