Help for this page

Select Code to Download


  1. or download this
    my @headings = map { "Head$_" } (1..5);
    my @names    = qw(
    ...
       uno dos tres
       een twee drie
    );
    
  2. or download this
    Head1onetwothreeHead2undeuxtroisHead3einszweidrei ...
    
  3. or download this
    use strict; # please
    
    ...
    # vertical
    printf("%10s %10s %10s\n",@headings);
    printf("%10s %10s %10s\n",@$_) for @names;