The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

[% USE CSV %]
[% CSV.dump(headings) %]
[% FOREACH row IN results %]
[% mylist = [] %]
[% FOREACH col IN columns %]
[% mylist.push(row.item(col)) %]
[% END %]
[% CSV.dump(mylist) %]
[% END %]