Skip to content

Instantly share code, notes, and snippets.

@chrisdone-artificial
Created June 24, 2024 16:01
Show Gist options
  • Save chrisdone-artificial/0ef6037223ff9894c8e795cac366aa31 to your computer and use it in GitHub Desktop.
Save chrisdone-artificial/0ef6037223ff9894c8e795cac366aa31 to your computer and use it in GitHub Desktop.
megaparsec works
ghci> runReader (runParserT (do a <- local (+1) ask; b <- ask; pure (a,b)) "" "") 0
Right (1,0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment