附加 :from的目的是什么? “use”中模块名称的后缀Perl 6 中的语句?
我在 Perl 6 模块中偶然发现的 use 语句的目的是什么?
use CGI:from<perl5>;
...
...
据我所知,其余代码只是 Perl 5 CGI 模块的普通用法。
“:from”后缀用于调用某种 Perl 5 兼容层。似乎找不到任何有关它的文档。
What's the purpose of use statement below which I stumbled across in some Perl 6 module?
use CGI:from<perl5>;
...
...
The rest of the code is just mundane usage of the Perl 5 CGI module, as far as I can tell.
Is the ":from" suffix used to invoke some kind of a Perl 5 compatibility layer. Can't seem to find any documentation about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 perl6 概要 11:模块:
确实,这是一个支持“其他语言”的方案,在本例中是 perl5。
Look at the perl6 Synopsis 11: Modules:
So indeed, it's a scheme to support "other languages", perl5 in this instance.