MasterDuke17
MasterDuke17
A typo for ```raku sub MAIN(Str :$sort where * == 'app'|'env'){} ``` ? Though of course it should be `eq` instead of `==`. Both of which do just die with...
Why not also for utf8?
Any reason not to merge this?
I don't know spesh well enough to review, but CI is clean, any reason not to merge?
This appears to only be a problem with named parameters. ```bash dan@athena:~/Source/raku$ raku -e 'sub foo ( Int:D $a ) { say $a; }; &foo.assuming(1).( )' 1 ``` and ```bash...