30 Aug
2011
30 Aug
'11
12:35 a.m.
Cool. I assumed that since I already had Parsec installed as part of the Haskell Platform it wouldn't have made any difference, but actually it sorted it. Thanks a lot! On 29 August 2011 18:25, Antoine Latter <aslatter@gmail.com> wrote:
There might be something off about your packages database.
I just did:
$ cabal update $ cabal install parsec $ ghci
import Text.Parsec.Prim
and it went fine.
Also, the module "Text.Parsec" re-exports the entirety of "Text.Parsec.Prim", so you won't get much advantage importing the "Prim" module on its own.
Antoine