Help for this page

Select Code to Download


  1. or download this
    my @table=();
    my $row=0;
    ...
      }
      $row++;
    }
    
  2. or download this
    my @table_linear;
    map { push @table_linear, @{$_} }, @table;
    
  3. or download this
    my @table_linear;
    foreach (@table) { 
      push @table_linear, @{$_} 
    }