schultzdavid
schultzdavid
## Description When choosing an admin password containing spaces during installation (or rather, in the initial setup tool that gets opened then), I get the following warning: ``` WARNING: Unable...
The page on [exceptions](https://docs.raku.org/language/exceptions#try_blocks) and the section on the [`try` statement modifier](https://docs.raku.org/language/statement-prefixes#try) currently don't say what happens when everything goes fine and no Exception is thrown/caught. The only thing in...
New in 2025.11: Improvements: - [ ] MoarVM now uses rapidhash v3 [74bbe190] - [ ] Give `any()` a `@foo` candidate for performance [b92e33cc] - [ ] Allow native attributes...
In real-world text processing problems (including one-liners), it's not uncommon that one wants to apply several substitution regexes one after another, transforming the input text one step at a time....
This will partly address issue #2354. Note to self: Add a rudimentary section on Raku's type system below the section on variables. In this new section, include among other things...
(This builds on what got introduced with PR [3524](https://github.com/rakudo/rakudo/pull/3524).) In [Line 228](https://github.com/rakudo/rakudo/blob/211197cbc824f516c1ab53a7db8b85360b4ca890/src/core.c/Cool.rakumod#L228) of src/core.c/Cool.rakumod , coerce the `Cool $pos` to `Int` when passing it to `Str.contains()`. This is because `Str.contains()`...