附加 :from的目的是什么? “use”中模块名称的后缀Perl 6 中的语句?

发布于 2025-01-04 13:42:53 字数 191 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冬天的雪花 2025-01-11 13:42:53

查看 perl6 概要 11:模块

use 语句允许在权限之外指定外部语言(或代替权限),以便您可以使用其他语言的模块。 from 副词还将任何附加部分解析为短格式参数。例如:

use Whiteness:from<perl5>:name<Acme::Bleach>:auth<cpan:DCONWAY>:ver<1.12>;
use Whiteness:from<perl5 Acme::Bleach cpan:DCONWAY 1.12>;  # same thing

确实,这是一个支持“其他语言”的方案,在本例中是 perl5。

Look at the perl6 Synopsis 11: Modules:

The use statement allows an external language to be specified in addition to (or instead of) an authority, so that you can use modules from other languages. The from adverb also parses any additional parts as short-form arguments. For instance:

use Whiteness:from<perl5>:name<Acme::Bleach>:auth<cpan:DCONWAY>:ver<1.12>;
use Whiteness:from<perl5 Acme::Bleach cpan:DCONWAY 1.12>;  # same thing

So indeed, it's a scheme to support "other languages", perl5 in this instance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文