release 0.1 (untested, may have typos)
Sunday, 1 October 1995
@LoL = ( [ "fred", "barney" ], [ "george", "jane", "elroy" ], [ "homer", "marge", "bart" ], );
# reading from filewhile ( <> ) { push @LoL, [ split ];}# calling a function for $i ( 1 .. 10 ) { $LoL[$i] = [ somefunc($i) ];}# using temp varsfor $i ( 1 .. 10 ) { @tmp = somefunc($i); $LoL[$i] = [ @tmp ];}# add to an existing rowpush @{ $LoL[0] }, "wilma", "betty";# one element$LoL[0][0] = "Fred";# another element$LoL[1][1] =~ s/(\w)/\u$1/;# print the whole thing with refsfor $aref ( @LoL ) { print "\t [ @$aref ],\n";}# print the whole thing with indicesfor $i ( 0 .. $#LoL ) { print "\t [ @{$LoL[$i]} ],\n";}# print the whole thing one at a timefor $i ( 0 .. $#LoL ) { for $j ( 0 .. $#{$LoL[$i]} ) { print "elt $i $j is $LoL[$i][$j]\n"; }}