-
Code:
```perl6
my $file = ("/doesnotexist/".encode ~ Buf.new(0x06, 0xAB)).decode('utf8-c8');
spurt $file, 'hello';
```
Result:
```
Malformed UTF-8 at line 1 col 36
in block at /tmp/5YtFoKr1…
-
```raku
say (-5.0)**(-1); # -1.8
say (-5.0)**(-1) + 0; # -0.2
```
-
Hi
Tests are failing with:
```
Test Summary Report
-------------------
t/02-base.t (Wstat: 0 Tests: 17 Failed: 0)
Parse errors: Subtest 5 expected 3 but contains 2 tests
Files=1, Tests=17, …
-
```
$ raku --version
Welcome to Rakudo(tm) v2020.11.
Implementing the Raku(tm) programming language v6.d.
Built on MoarVM version 2020.11.
```
Refer to [this](https://stackoverflow.com/q/6694865…
-
```
my @a = ;
my $c = class C {
our sub foo(*@a) { @a };
method foo(*@a) { @a }
}.new;
@a ==> $c::foo() ==> say();
@a ==> foo($c:) ==> say();
```
output:
```
===SORRY!=== Error …
-
## Problem or new feature
Raku has two versions, `v6.c` and `v6.d`. The rest are releases; 2021.03 is a release of the `v6.d` version.
## Suggestions
Check all references to versions that mig…
-
rakubrew v26 Build type: fatpack OS: linux
env
/home/mm/.rakubrew
Can not build 2016.08 or less.
2016.09 or greater work.
Couldn't find a build::setup module on CPAN.
> mm@linux1:~> rakubrew…
-
It seems DBIish with Pg does not work across multiple files. I've tested this on Windows 10 and Linux, using the September release of rakudo. The test case is:
Importer.pm6 contains:
> use DbConn;…
lefth updated
7 years ago
-
See [current definition](https://docs.raku.org/language/pod#Declarator_blocks) and the [original thoughts](https://github.com/Raku/old-design-docs/blob/a4c36c683dafdad0bb55996e78b66a1f48fc703c/S26-doc…
-
## The Problem
The `Str` `subset-rw()` no longer works to append text to a string.
## Expected Behavior
```
$ raku -v; raku -e'my $s = "foobar"; $s.substr-rw(6, 0) = "yyy"; say $s'
Wel…