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