Help for this page

Select Code to Download


  1. or download this
    my @list_of_arrays;
    while (<FILE>) {
        my @array = split "\t", $_;
        push @list_of_arrays, \@array;
    }