与“SML of New Jersey”合作
我下载适用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
字符串中的
\a
被解释为转义序列(指定响铃字符) - 而不是反斜杠后跟 a。您需要使用另一个反斜杠转义反斜杠,才能将其解释为文字反斜杠。即:您还可以使用正斜杠而不是反斜杠来避免转义任何内容。
另请注意,如果您从 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.: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.