timo
timo
can you try this in powershell: ``` raku -e '.raku.say for @*ARGS' '.say for "3²".uninames' ``` `".say for \"3²\".uninames"` is the output i would expect, but it might give some...
which terminal emulator is this happening in? does powershell come with its own, or is this the new (for a few years) Windows Terminal App or what it's called? does...
``` xmllint ../../perl6-web-scraper/t/data/s05.html ../../perl6-web-scraper/t/data/s05.html:50: parser error : xmlParseEntityRef: no name else if (element.events && element.events[type] && handler.$$guid) ^ ../../perl6-web-scraper/t/data/s05.html:50: parser error : xmlParseEntityRef: no name else if (element.events && element.events[type]...
There's also `` tags that the XML grammar doesn't know don't need a closing tag to go with them, which would optimally cause a quick parse failure when a mismatched...
@JJ I found you some relevant places in the code: [if @name && $*W.already_declared($*SCOPE, $target_package, $outer, @name) {](https://github.com/rakudo/rakudo/blob/6888e97725482d31c416e6d0261a793408515fe4/src/Perl6/Grammar.nqp#L2019) [# If it exists already, then it's either uncomposed (in which](https://github.com/rakudo/rakudo/blob/6888e97725482d31c416e6d0261a793408515fe4/src/Perl6/Grammar.nqp#L2035-L2038) [already_declared](https://github.com/rakudo/rakudo/blob/6888e97725482d31c416e6d0261a793408515fe4/src/Perl6/Grammar.nqp#L2949)...
When tuning the batch size, you can get better results ``` timo@pebbsi:/var/home/timo$ /usr/bin/time rakudo -e '(^∞).hyper(:10000batch,:4degree).grep(*.is-prime)[1_000_000].say' 15485867 1.63user 0.11system 0:00.97elapsed 179%CPU (0avgtext+0avgdata 298616maxresident)k timo@pebbsi:/var/home/timo$ /usr/bin/time rakudo -e '(^∞).hyper(:5000batch,:4degree).grep(*.is-prime)[1_000_000].say' 15485867 1.63user...
"proto sub" and "proto method" (along with "only sub" and "only method") are also necessary when you want to prevent multi candidates from an "outer" scope to enter into the...
Can you rebuild moarvm with the following change to its `build/setup.pm`: on line 474 in the hash `my %OS_WIN32` to the array under the key `defs` add this entry: `_FILE_OFFSET_BITS=64`...
Maybe it's easier to try this without the `--gen-moar` flag "in the way". it should be fine to just cd into the MoarVM or moar folder, which may or may...
please try setting the env var `MVM_JIT_DISABLE=1` and run `make install` in rakudo with that. this looks like the issue where newer windows versions can't build a moarvm that can...