为什么ghci不能识别inits功能

时间:2013-06-03 18:14:06

标签: haskell

我正在使用ghci,当我尝试使用“inits”功能时,我收到错误:

Not in scope: `inits'
    Perhaps you meant `init' (imported from Prelude)

但是这个功能应该根据这个预先确定: http://www.haskell.org/ghc/docs/6.12.2/html/libraries/base-4.2.0.1/Data-List.html

我做错了什么?

1 个答案:

答案 0 :(得分:4)

您需要导入Data.List

:m +Data.List
inits [[1,2],[3,4]]

或者你可以使用全名

Data.List.inits [[1,2],[3,4]]