Rosetta Code/Count examples: Difference between revisions

Content added Content deleted
m (→‎{{header|Ring}}: Remove vanity tags)
m (→‎{{header|Perl 6}}: fix file open error handling)
Line 1,858: Line 1,858:


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


# Add table boilerplate and caption
# Add table boilerplate and caption