Help for this page

Select Code to Download


  1. or download this
    my $list = [];  # let's start with an array ref
    while (<>) {
    ...
        print "list[$i][$j] = ", $list->[$i]->[$j], "\n";
      }
    }