Help for this page

Select Code to Download


  1. or download this
    while (my $line=<MYFILE>) {
      chomp $line;
      #set up hash entry
    }
    
  2. or download this
    my $buildings={};  #set up a hash reference
    while (my $line = <MYFILE>) {
    ...
    }
    # ... more stuff
    print_hash($buildings);