如何在rakudo中加载parrot SDL pir模块?
我不知道如何在 rakudo 中加载 de parrot SDL 模块。我找到了一个 示例 来使用 pir 代码执行此操作。
但是...有什么方法可以使用 perl 代码将 pir SDL 模块加载到 rakudo 中吗?
I don't know how to load de parrot SDL module in rakudo. I've found a example to do that with pir code.
But... there is any way to load pir SDL module into rakudo with perl code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅仅
使用 SDL;
怎么样?这就是它应该如何工作,这就是我在示例中看到的。How about just
use SDL;
? That's how it should work, and that's what I see in the examples.