Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
        last unless @$columns;
        print join '|', @$columns, "\n\n";
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
    for (@rows){
        print join '|', @$_, "\n\n";
    }