Rosetta Code/List authors of task descriptions: Difference between revisions

Content added Content deleted
(→‎{{header|Perl 6}}: Update table to be sortable on author name and # of tasks, only put task sorting header if an author has 3 or more tasks)
m (fix file open error handling)
Line 99: Line 99:


# Open a file handle to dump table in
# Open a file handle to dump table in
my $out = open($tablefile, :w) or die "$!\n";
my $out = open($tablefile, :w) orelse .die;


# Add table boilerplate and header
# Add table boilerplate and header