与“SML of New Jersey”合作

发布于 2024-11-09 23:46:18 字数 157 浏览 0 评论 0原文

我下载适用于 Windows Vista 的“新泽西州的 SML”。

我正在处理在 c 库中调用“a.ml”的 ML 文件。

现在我想将文件中的所有命令加载到解释器中,但我没有成功。

我尝试过(使用“c:\a.ml”);

感谢您的帮助。

I download "SML of new jersey" for windows vista.

I work on ML file which call "a.ml" in libary c.

Now I want to load all the commands in the file to the interpter, but I don't succsses.

I tried (use "c:\a.ml");

Thank you for your help.

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

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

发布评论

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

评论(1

血之狂魔 2024-11-16 23:46:18

字符串中的 \a 被解释为转义序列(指定响铃字符) - 而不是反斜杠后跟 a。您需要使用另一个反斜杠转义反斜杠,才能将其解释为文字反斜杠。即:

use "c:\\a.ml";

您还可以使用正斜杠而不是反斜杠来避免转义任何内容。

另请注意,如果您从 ml 文件所在的目录中调用解释器,则根本不需要指定目录,即 use "a.ml"; 在这种情况下即可。

The \a in the string is interpreted as an escape sequence (specifying the bell character) - not a backslash followed by an a. You need to escape the backslash with another backslash for it to be interpreted as a literal backslash. I.e.:

use "c:\\a.ml";

You can also use forward slashes instead of backslashes to avoid having to escape anything.

Also note that if you invoke the interpreter from within the directory the ml file is in, you don't need to specify a directory at all, i.e. use "a.ml"; will do in that case.

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