Help for this page

Select Code to Download


  1. or download this
    $station1_arrayref = $station_data{1};
    @station1_array = @$station1_arrayref;
    
  2. or download this
    @station1_array = @{$station_data{1}};
  3. or download this
    foreach my $element (@{$station_data{5}}) {
        print $element. "\n";
    }