Help for this page

Select Code to Download


  1. or download this
    @field = qw(look at me now);
    @field2 = qw(this is so neat);
    ...
    local($\, $,) = ("\n", "\t");
    print @field;    # first row
    print @field2;   # second row
    
  2. or download this
    look    at    me    now
    this    is    so    neat