-
This is the first time I see this weird error at destroot:
```
Executing: cd "/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_lang_rakudo/rakudo/work/rakudo-2023.08" && /usr/bin/make -w inst…
-
## The Problem
Raku currently _very_ lightly wraps internal `NQP` and VM operations for:
- getting Unicode properties (`uniprop`)
- getting Unicode names (`uniname` / `uninames`)
- matching t…
-
## The Problem
Cannot assign to rw class attribute:
```
perl6 -e 'class A { has Hash $.b is rw; method set-b { $.b = %( foo => 1 ); self.b } }; say A.new.set-b'
Cannot assign to a readonly va…
-
## The Problem
Form the docs:
> infix ~&
>
> Coerces each argument to a non-variable-encoding string buffer type (e.g. buf8, buf16, buf32) and then performs a numeric bitwise AND on cor…
-
## The Problem
Please see the [the following gist](https://gist.github.com/Xliff/74ffdc15f4c20943185f9449240c5e78) for a full listing of the code. It will be reposted here in short order.
## E…
-
Filing this based on resolution of [RT#130086](https://rt.perl.org/Ticket/Display.html?id=130086#ticket-history)
I'd expect the following to give `nqp::eoffh` as `0` both times:
```
$ perl6 -e …
-
Golf:
```
use nqp;
my $code = start {
my $compiler := nqp::getcomp('Raku');
my $g := nqp::findmethod($compiler,'parsegrammar')($compiler);
my $a := nqp::findmethod($compiler,'par…
-
When trying to build the javascript backend, the build process exits with following error:
```
/home/mai/projects/raku/nqp/nqp-m --module-path=/home/mai/projects/raku/nqp/gen/js/stage1 --target=mb…
-
## The Problem
It is not possible to `augment` classes and have the new method available in deeper in the tree.
### case 1
```
use v6.c;
use MONKEY-TYPING;
augment class Any {
…
-
## The Problem
When using native values, certain combinations of traits/types in a signature can cause an error.
```raku
# native variables
my uint64 $u64 = 0;
my uint32 $u32 = 0;
my uin…