[Haskell-cafe] parsec reorganization
Rustom Mody
rustompmody at gmail.com
Wed Mar 30 13:30:40 UTC 2016
Ive been trying parsec
And I gather that the modules structures are heavily reorganized
eg
https://kunigami.wordpress.com/2014/01/21/an-introduction-to-the-parsec-library/
starts with
import Data.Char (char)
which immediately gives
Module ‘Data.Char’ does not export ‘char’
Change that to
import Text.Parsec.Char (char)
and that error goes and more and more arcane ones start
Likewise all the stuff here
http://jakewheat.github.io/intro_to_parsing/
seems to be wrong paths
Is there no tutorial for the current versions?
ghc 7.8.4
parsec 3.1.9-2
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/haskell-cafe/attachments/20160330/49b092d0/attachment.html>
More information about the Haskell-Cafe
mailing list