目前,我正在使用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中有一个冒号命令可以让我隐藏密码包?
发布于 2015-10-09 14:41:54
是。
:set -hide-package cryptonitehttps://stackoverflow.com/questions/33040825
复制相似问题