Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

[% USE CSV -%]
[% CSV.dump([ 'Channel' 'Count' ]) %]
[% FOREACH row IN results %]
[% mylist = [] %]
[% mylist.push(row.channel) %]
[% mylist.push(row.ch_count) %]
[% CSV.dump(mylist) %]
[% END %]