在 Ceylon 中使用模块

Using modules in Ceylon

我正在查看锡兰。我想玩 HTML 模块,但不知道如何导入它。恕我直言 documentation about modules 不解决这个简单的任务。

谢谢 吉拉德

要导入模块本身,您需要一个 module.ceylon 文件,如下所示:

module com.example.mymodule "1.0.0" {
    shared import ceylon.html "1.2.2";
}

如果 ceylon.html 没有出现在您模块的 public api 中,您可以省略 shared

您需要将其添加到您的模块描述符中,如 this section 中所述。

module your.module "1.0.0" {
    import ceylon.html "1.2.2";
}

如果您在 web IDE,则需要选中“高级”复选框(在 运行/停止/清理/共享的右侧)以查看 module.ceylon 文件.