For a uni assignment I need to write parsers in Haskell, right now I have the following parser i think is correct:
parseYear :: Parser Char Year
parseYear = Year <$> ...
I want to check if it works, for example with > parseYear "2004"
in ghci. this command is not valid, but i there another way to quickly check if a parser I'm writing is correct?
Edit:
Example, for the parser:nesting :: Parser Char Int
, this would be what i want
From your comment responses, I understand that you're using the
uu-tc
library, but yourParser
type does not come fromParseLib.Simple
, because it's not a function.This means your
Parser
type must come either fromParseLib.Parallel
or fromParseLib.Abstract
. Both of those modules define theirParser
type asdata
, and both expose aparse
function - here's the one fromParseLib.Abstract
and here's the one fromParseLib.Parallel
.Both these
parse
functions have the same shape: they take aParser
as first parameter and an input list as second. So that's how you would call it: