use Excel::Writer::XLXS:from<Perl5>; # <== version 1.03
my $wb = Excel:;Writer::XLSX.new: 't.xlsx';
my $fmt = $wb.add_format;
$fmt.set_size: 10;
$wb.close;
However, this alternative syntax works:
use Excel::Writer::XLXS:from<Perl5>; # <== version 1.03
my $wb = Excel:;Writer::XLSX.new: 't.xlsx';
my $fmt = $wb.add_format(size => 10);
$wb.close;
OS: Debian 10 Buster
Raku -v:
This is Rakudo version 2020.02.1 built on MoarVM version 2020.02.1
implementing Raku 6.d.
I will attempt to provide a test case for this issue.
This Raku script fails with a core dump:
However, this alternative syntax works:
OS: Debian 10 Buster Raku -v:
I will attempt to provide a test case for this issue.