Skip to content

Instantly share code, notes, and snippets.

@bananabrick
Last active July 13, 2020 06:34
Show Gist options
  • Save bananabrick/c565412e87c7644bb3f853c8a4dea686 to your computer and use it in GitHub Desktop.
Save bananabrick/c565412e87c7644bb3f853c8a4dea686 to your computer and use it in GitHub Desktop.
coreExprParser :: Parser CoreExpr
coreExprParser =
-- I was having some backtracking
-- issues so now we "try" every parser.
choice [
Var <$> string "wtfd",
Var <$> string "wtf",
letRecParser,
letParser,
constrParser,
variableParser,
numParser
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment