Help for this page

Select Code to Download


  1. or download this
    # Ooops!
    print join ",", @foo, "\n";
    ...
        map {
            tr(td($_->[0]), td($_->[1])) } @foo,
            ...
    
  2. or download this
    # De-oopsed.
    print join(",", @foo), "\n";
    ...
        map({
            tr(td($_->[0]), td($_->[1])) } @foo),
            ...