您将 .hs 文件放在哪个目录中,以便可以在 GHCI 中使用 :l 加载它们?
我在 Windows 7 中运行 GHCI 6.4。我不知道将 .hs 文件添加到 .\ghc\ 目录的哪个子目录中。每次我尝试使用 :l 时,它都会告诉我找不到该文件。还有其他人遇到过这个问题吗?
编辑:谢谢您的回答。这两个看起来都可以工作,但我最终按照教授的建议使用了“:cd”命令。
I am running GHCI 6.4 in Windows 7. I do not know what sub directory of the .\ghc\ directory to add .hs files to. Every time I try using :l it tells me that the file cannot be found. Has Anybody else run into this problem?
EDIT: Thank you for your answers. Both of those look like they will work, but I ended up using the ":cd " command as per my professor's recommendation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
:set -iPATH
将目录 PATH 添加到搜索路径。之后,您可以加载该目录中的文件。You can add a directory PATH to the search path with
:set -iPATH
. After that, you can load files that are in that directory.我只使用过一点 GHCi,但我总是能够毫无问题地执行
:l D:\Documents\Haskell\myscript.hs
。I've only used GHCi a little, but I've always been able to do
:l D:\Documents\Haskell\myscript.hs
with no problems.