Help for this page

Select Code to Download


  1. or download this
    $grid->get_line(257)->get_station('257_5')->Elevation;
    
  2. or download this
    $grid->{ 257 }{ 257_5 }[ Elevation ];
    
  3. or download this
    $grid->get_line($lineID)->get_station($stationID)->Elevation;
    
  4. or download this
    $grid->{ $lineId }{ $stationID }[ Elevation ];
    
  5. or download this
    my $seismic = Seismic->new( 'seismic.dat' );
    
    ...
            );
        }
    }
    
  6. or download this
    ## You didn't provide a constructor from a file
    ## But you could have.
    ...
            );
        }
    }
    
  7. or download this
    package Seismic;
    use Exporter;
    ...
    }
    
    1;