Márton Polgár
Márton Polgár
Consider the following scenario. `my @a = ;` `my $b = 3;` `dd (@a, $b);` this yields `([1, 2], 3)` so the array of @a is embedded into the list....
Hi all, this issue is inspired by the abundance of content that still refers to Perl6 some way - mostly in the file extensions but sometimes in domain names as...
Hello, I didn't want to apply a template because I thought this topic can cover parts of documentation, implementation and design itself. The main focus of my investigations was the...
Hello, I think it would be good to clarify how much type objects of different numeric types can be coerced into each other or used in the place of each...
Hello When I tried to call fetchVideos with a number greater than 50, the library throws an error. This seems a bit harsh given that 100 still seems like a...
## The Problem According to the docs: 1. "Any infix operator may be called with its two arguments reversed by prefixing with R. Associativity of operands is reversed as well."...
## The Problem This is a very similar phenomenon to #5380 that I found in my notes. ```raku my token inQuote { \' (.*?) \' }; say "'Hello World'" ~~...
## The Problem The problem might be that I don't understand how this is supposed to work. One thing that I noticed in other situations as well is that sometimes,...
According to [the current documentation](https://docs.raku.org/routine/so), `so` exists as a method and as a prefix operator (i.e a subroutine called `&prefix:`). However, this doesn't seem to explain why `1 ==> so()`...
Hi, I've been running circles to get this confirmed, I rather open an issue now. The `zef --help` is quite huge; when trying to grep to it, I noticed that...