4

我刚刚安装了 HUnit,并想将其导入 ghci。

Prelude> import HUnit

<no location info>:
    Could not find module `HUnit':
      Use -v to see a list of the files searched for.

另外,我不确定如何使用-v来帮助我。

Prelude> import -v HUnit

<interactive>:1:8: parse error on input `-'

Prelude> import -v

<interactive>:1:8: parse error on input `-'

Prelude> -v

<interactive>:1:2: Not in scope: `v'

我该如何导入它?

4

1 回答 1

12

正确的模块是Test.HUnit. 导入它,它应该可以工作。

要使用该-v选项,可以在命令行中指定它,例如ghci -v,或者:set -v在 GHCi 中键入。

于 2011-10-19T06:07:53.233 回答