Help for this page

Select Code to Download


  1. or download this
        push(@report, [$csv->fields]);
        
        # Later...
        return ( join( "\n", @report ) );
    
  2. or download this
        my @refs = ([qw/foo bar baz/], [qw/fee fie foe/], [qw/red green/])
    +;
     
        print join "\n", map { join ',', @$_ } @refs;