Skip to content

Instantly share code, notes, and snippets.

@varreli
Created December 9, 2020 06:03
Show Gist options
  • Save varreli/0896128aa3fb2e7bc1c5f3e1ff420f11 to your computer and use it in GitHub Desktop.
Save varreli/0896128aa3fb2e7bc1c5f3e1ff420f11 to your computer and use it in GitHub Desktop.
factor :: Parser Int
factor = do symbol "("
*> expr
<* symbol ")"
<|> natural
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment