Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    while ( my @vals = $it->() ) {
        print "@vals\n";
    }
    
  2. or download this
    a b c
    e 1 2
    3 4 5
    3 f
    
  3. or download this
    use strict;
    use warnings;
    ...
    END
    
    print wrap("  ", '', $text);
    
  4. or download this
      BTW - I use
    this for
    ...
    multi-line output
    - tables and
    such.