http://qs321.pair.com?node_id=684132


in reply to Re: Data Structures
in thread Data Structures

my( $x, $y, $z ) = $line{ $lineName }{ $stationName };
my( $x, $y, $z ) = @{ $line{ $lineName }{ $stationName } };
my( $x, $y, $z ) = $line[ $lineNo ][ $stationNo ];
my( $x, $y, $z ) = @{ $line[ $lineNo ][ $stationNo ] };

Replies are listed 'Best First'.
Re^3: Data Structures
by BrowserUk (Patriarch) on May 02, 2008 at 11:22 UTC