Help for this page

Select Code to Download


  1. or download this
    for $row ( @out ) {
        print join( "\t", @$row), "\n";
    }
    
  2. or download this
    $, = "\t"; # Output field separator
    for $row ( @out ) {
        print @$row, "\n";
    }