Replies: 1 comment
|
Thanks for the heads-up and the correction! I’m happy to merge the fix! I’ll be out for the next 10 days but can take a look after that :) |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
For some reason, the introduction to the Parsec library has some operators missing (namely
<$>,<*>and<|>) beginning with the two flavors section. This makes it hard to follow, especially for a newcomer not yet familiar withApplicative.Also, the result to
test expressionParser "(123+(324-456))"has all theT*data types appear asJ*:Right (JNode (JTerminal 123) JAdd (JNode (JTerminal 324) JSubtract (JTerminal 456))).Since that post is featured as a tutorial in the Parsec readme,1 I thought it should be corrected. I already have it prepared and can submit a pull request, I only wanted to raise it here first since it's your personal blog.
Thanks for that helpful tutorial!
Footnotes
More precisely, that readme links to the old WordPress post. I can also create a pull request there to update it. ↩
All reactions