Wenzel P. P. Peppmeyer
Wenzel P. P. Peppmeyer
The current behaviour was changed/implemented without further discussion because of [rt.perl.org#130099](https://github.com/Raku/old-issue-tracker/issues/5801). This made the following DWIM: ``` with $a & $b {;} ``` However, it was not tested in S04-statements/with.t...
You throw I catch! \o/
``` subset IntCallabel of Block where *.signature ~~ :(Int); sub foo(IntCallabel \c) { } sub works(Int $i) { } foo(&works); ``` OUTPUT: ``` Can only use dispatcher-track-attr on a P6opaque...
`Stations that got clicked recently` and `Stations that got changed/added recently` state "Returns a list of stations that got added or changed recently." What exactly means "recently"?
I'm working on Perl 6 bindings for radiobrowser-api and found myself in need to fetch the whole list of stations. Waiting for 60+ seconds proved to be rather boring. Hence...
``` constant \s = :(); # rakudo-moar 1dbf5f589: OUTPUT: «===SORRY!===QAST::Block with cuid 1 has not appeared» ``` expected behaviour same as: ``` my \s = :(); rakudo-moar 1dbf5f589: ( no...
For a multi `trait_mod:(Routine:D, |)` is always called on the proto, never on the actual candidate. This has been deemed wrong in the discussion: https://irclogs.raku.org/raku-dev/2023-06-05.html ``` multi sub trait_mod:(Routine \r,...
In /type/Mu . It likely needs linking to from quite a few places.
Nor can it be made one. See discussion: https://irclogs.raku.org/raku-dev/2023-05-17.html#12:54 We better make that clear in /language/pragmas#MONKEY-SEE-NO-EVAL and /type/independent-routines#routine_EVAL . Especially the latter gives the impression that the absense of `use...
* [x] Empty is a very special value not just in for loops. Yet the docs don't explain what it does at all. At least in /language/control there should be...