当我尝试使用import IO
或import Random
编译一个简单的源文件时,构建失败并显示如下错误消息:
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
答案 0 :(得分:23)
模块名称在某些时候发生了变化。您可能需要import System.IO
和import System.Random
。
以下是GHC 7.6.1中标准库的module hierarchy。