如何导入SML中的代码?

发布于 2024-10-14 18:23:40 字数 151 浏览 3 评论 0原文

我目前正在批改 SML 课程的作业。我编写了一些测试用例来自动检查学生作业中函数的正确性,并且我希望能够导入他们的代码,然后针对该代码运行测试用例。我正在想象类似于 python 导入语义的东西。现在,我拥有的最佳解决方案是将这段代码复制粘贴到每个作业的底部。 SML 可以做到这一点吗?

I'm currently grading assignments for a course on SML. I've written some test cases to automatically check correctness of functions in the students' assignments, and I'd like to be able to import their code and then run the test cases against that code. I'm imagining something similar to python import semantics. Right now, the best solution I have is to copy-paste this code at the bottom of each assignment. Is this possible with SML?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

寒冷纷飞旳雪 2024-10-21 18:23:40

使用 use

use "filename.sml";
(* your test cases here *)

如果您的学生解决方案位于“student.sml”中,测试用例位于“tests.sml”中:

use "student.sml";
use "tests.sml";

Use use:

use "filename.sml";
(* your test cases here *)

If you have the student solution in "student.sml" and your test cases in "tests.sml":

use "student.sml";
use "tests.sml";
写下不归期 2024-10-21 18:23:40

查看 QCheck,SML 的单元测试库

Look at QCheck, a unit testing library for SML

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