Help for this page

Select Code to Download


  1. or download this
    $ perl -e'@f=qw/foo bar baz/;for (@f) {print;shift @f}'
    foobaz$
    
  2. or download this
    while (@report = $sth->fetchrow_array()) {
        print SAVE join("\t", @report), $/;
    }