Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my @dim_array = ([qw(1 2 3)],[qw(3 2 1)]);
    print Dumper(\@dim_array);
    print "\n";
    print Dumper(@dim_array);
    
  2. or download this