Created
August 7, 2016 23:27
-
-
Save mankyKitty/37d0be05649114b0c4ce1ae09c3eca4a to your computer and use it in GitHub Desktop.
O.o
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
author :: Parser Author | |
author = between parens (many anyChar) <* eol | |
title :: Parser Title | |
title = do | |
t <- endBy anyChar (optional author) | |
mA <- optional author | |
pure $ Title t mA |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment