2

我使用 WinGHCi,我的代码(非常简单)如下:

module Main 
    where

import IO

main = do
  hSetBuffering stdin LineBuffering
  putStrLn "Enter your name: "
  name <- getLine
  putStrLn("Hello, " ++ name ++ ", how are you?");

错误信息:

2.hs:4:8:
    Could not find module `IO'
    It is a member of the hidden package `haskell98-2.0.0.1'.
    Use -v to see a list of the files searched for.
Failed, modules loaded: none.

(这些代码在 WinHugs 中运行正确,但我只想编译它)

也许这个问题真的很琐碎,但我自己在研究Haskell,没有人可以咨询。我尝试在谷歌中搜索,不幸的是找不到任何有意义的东西。

我被卡住了......提前谢谢。

4

1 回答 1

11

您要导入System.IO.

于 2013-03-25T03:48:34.510 回答