
18 Apr
2017
18 Apr
'17
8:48 a.m.
On Tue, Apr 18, 2017 at 03:39:28PM +0300, Andrey Klaus wrote:
Hello everybody,
A small question. ----- packageP = do literal “package" -----
what is the "literal" in this code? My problem is
$ ghc ParserTest.hs [1 of 1] Compiling ParserTest ( ParserTest.hs, ParserTest.o )
Hello Andrey, literal is not in scope, apparently. Did you forget to put an import at the top of ParserTest.hs? E.g.: import SomeParserModule