目前,我正在使用ihaskell来了解一些库。 IHaskell仍然很危险,我不能这样做:

-- This doesn't work:   ":ext PackageImports", the kernel hangs
-- This doesn't work:   "{-# LANGUAGE PackageImports #-}", the kernel hangs
import Codec.Crypto.RSA.Pure
import qualified "crypto-api" Crypto.Random                                         as CR
import           Control.Monad.CryptoRandom

没有“PackageImports”,我会收到一条错误消息:
Ambiguous interface for ‘Crypto.Random’: it was found in multiple packages: crypto-api-0.13.2 cryptonite-0.7

我的问题是,ghci中是否有一个冒号命令可以让我隐藏cryptonite软件包?

最佳答案

是的。

:set -hide-package cryptonite

10-08 12:48