找不到模块,它是隐藏包haskell98的成员

时间:2013-04-20 04:21:26

标签: haskell import hidden

当我尝试使用import IOimport 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

1 个答案:

答案 0 :(得分:23)

模块名称在某些时候发生了变化。您可能需要import System.IOimport System.Random

以下是GHC 7.6.1中标准库的module hierarchy