Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Hugs 98,我正在尝试加载这样的文件
:加载插入.hs
并一直说
我是 Haskell 的新手
我究竟做错了什么?
尝试在 Hugs 提示符下输入:! dir(如果您在 Windows 上)或:! pwd; ls(在 Linux 上):这将向您显示当前目录及其内容 - 它应该包含“insert.hs”。
:! dir
:! pwd; ls
如果不是这种情况,请这样做:cd <location of insert.hs>,然后您应该可以这样做:load insert.hs。
:cd <location of insert.hs>
:load insert.hs
但就像 dsign 在评论中所说,考虑升级到 GHC - Hugs 已经过时 6 年多了!