Help for this page

Select Code to Download


  1. or download this
    my @column1;
    my @column2;
    ...
        print join "\t", $column1[$row], $column2[$row],$column3[$row],$co
    +lumn4[$row];
        print "\n";
    };
    
  2. or download this
    my @column;
    
    ...
        print join "\t", map { $_->[ $row ] } @column;
        print "\n";
    };