roc-parser icon indicating copy to clipboard operation
roc-parser copied to clipboard

A simple Parser for Roc

Results 6 roc-parser issues
Sort by recently updated
recently updated
newest added

It seems that there is some weird interaction with nested `oneOf`s and expectations. When I run the code below, I get this compiler error: ``` jojo@Windows-PC:~/code/feed-reader$ roc test backend/test.roc [......

I know there's another one in progress, I just want to address some doubts I have

I have this mini parser for add expression. But compiler overflows due to the recursive structure. I saw `lazy` seems to be the solution for this but can't figure out...

What is the difference between `apply` and `keep`? I tried viewing the source, and while they are implemented differently the functionality seems pretty similar. It would be good to document...

For example, in Haskell I can do something like: ```haskell string "Game " >> digits ... ``` I tried using `ignore`, but it doesn't seem to do what I want:...