Help for this page

Select Code to Download


  1. or download this
    @headers = qw(one two three);
    @rows = (
    ...
        print @headers;
        print @$_ foreach @rows;
    }
    
  2. or download this
    @headers = qw(one two three);
    @rows = (
    ...
            $s
        } @$_ foreach \@headers, @rows;
    }