英文: How to add an attribute and its accessors in Raku using add_attribute()? 问题 我有这个程序: class Foo { ...
如何调试Raku程序
英文: How to debug a Raku program 问题 我查看了文档,但我不太明白如何调试。我使用raku-debug命令,但它报告了一个错误: > 无法找到Debugger::U...
如何在Raku中创建一个与内置类同名但不会遮盖它的类?
英文: How do I create a class with the same name as a built-in one without overshadowing it in Raku? 问...
使用在超方法链中的gather/take的CALL-ME不起作用。
英文: CALL-ME with gather/take used in a hyper method chain doesn't work 问题 在玩弄方法链和 `CALL-ME`。 以下是...
安全转义 Raku 正则表达式元字符
英文: Safely escaping Raku regex metacharacters 问题 我想将一个类似于glob的模式转换为Raku正则表达式。以下是我目前的做法: s :global { ...
Junctions 如何评估?
英文: How are Junctions evaluated? 问题 关于Junctions的概念最初由Damian Conway引入,旨在模拟量子叠加并表达量子计算算法。 尽管这可能很有趣,但叠加...
如何在Raku中的给定块内使用”when”来智能匹配一个值列表?
英文: How do I smartmatch against a list of values with when inside a given block in Raku? 问题 Here's t...
在Cro中是否有一种方法可以多次使用request.body?
英文: Is there a way to consume request.body multiple times in Cro? 问题 I'm writing a middleware that c...
如何在Raku中注册不同的事件到供应中?
英文: How do I register different events in a supply in Raku? 问题 "Hopefully 'events' isn't a misn...
Too few positionals passed, why?
英文: Too few positionals passed, why? 问题 sub hanoi(Int:D $n, Str:D $start, Str:D $end, Str:D $extra, ...