-
# Bug Description
I upgraded raku on my Windows machine from version 2023.08 to 2024.10. Now running `raku` in the terminal opens the repl, and immediately throws this error:
```
>Cannot locate…
-
My kit:
```
Welcome to Rakudo™ Star v2024.10.
Implementing the Raku® Programming Language v6.d.
Built on MoarVM version 2024.10.
```
On ubuntu
```
PRETTY_NAME="Ubuntu 22.04.5 LTS"
```
zef
`…
-
See discussion at https://github.com/rakudo/rakudo/issues/2089 and the issue https://github.com/rakudo/rakudo/issues/2088.
-
From: https://irclogs.raku.org/raku-beginner/2024-08-01.html#12:07
```
1 $ RSTAR_DEBUG=1 ./rstar install
2 RSTAR_DEBUG=1 ./rstar install
3 [2024-08-01T22:40:12] [DEBUG] Handling action 'in…
-
Inspired by https://github.com/rakudo/rakudo/issues/2669
- No X::AdHoc (die) errors anymore
- No string attributes, except for names of methods / variables, etc.
- Enums for other specific reason…
-
The [P5pack](https://raku.land/zef:lizmat/P5pack) module covers most of the functionality needed.
And the `use experimental :pack` functionality has bugs: https://github.com/rakudo/rakudo/issues/18…
-
raku
Welcome to Rakudo(tm) Star v2024.10.
Implementing the Raku(R) Programming Language v6.d.
Built on MoarVM version 2024.10.
I ran into a problem while trying to set up Readline: Cannot locate…
-
Inspired by https://github.com/rakudo/rakudo/issues/2797
This would allow:
```
% raku -e 'sub foo(:@bar) { dd @bar }; foo :bar'
Type check failed in binding to parameter '@bar'; expected Positi…
-
Sometimes I feel the absence of a SLICE method, essentially doing:
method SLICE(@pos) {
my @values;
@values.push(self.AT-POS($_)) for @pos;
@values
}
Making this part of the intern…
-
Hello, I am trying to package rakudo with [conda](https://conda.io), but I am having some issues, I figure you guys could help me.
## The Problem
Everything compiles fine, however after installa…