Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    print Dumper(\@arr)
    
  2. or download this
    my @arr;
    open (B, "temp.dat");
    ...
        my @temp = split //, $line;
        push @arr, [@temp];
    }