Help for this page

Select Code to Download


  1. or download this
       %windows = (
          "office 1"  => ("120 120" => 3,
    ...
          "bedroom 2" => ("100 75"  => 2,
                          "120 180" => 1),
       );
    
  2. or download this
       Key       Value
     -------     -----
     120 120       3
     140 135       1
     155 135       1
    
  3. or download this
       foreach my($room, $measurements_hashref) (each %windows) {
          print "$room\n";
    ...
             print "$measurements $count\n";
          }
       }