Jesse asked about getting t/pugs/operator/arith.t to run
on Rakudo, as written arith.t depends on the ".nextwith"
capability from S06. For example:
sub tryok ($ok, $todo) {
if ($todo) {
&ok.nextwith($ok,$todo, :todo);
} else {
&ok.nextwith($ok);
}
}
I'm
Hi,
dakkar (via RT) wrote:
If I uncomment the $u.boo after the re-assignment to $u, I get a "Null
PMC access in get_string()"
It looks like inheritance is not working as I'd expect.
To make it "work", I have to move the 'set' method into Foo, and
remove all references to Bar.
Thanks for rep