We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, in Haskell I can do something like:
string "Game " >> digits ...
I tried using ignore, but it doesn't seem to do what I want:
ignore
ignore (string "Game ") |> \_ -> digits ...
What would be the correct way to do it?
The text was updated successfully, but these errors were encountered:
I just published a new release to update the documentation with a lot of worked examples.
Short answer is you can use skip.
skip
Can you please look at the docs for this pacakge and let me know if this is easy enough to find the answer to your question in there?
Sorry, something went wrong.
No branches or pull requests
For example, in Haskell I can do something like:
I tried using
ignore
, but it doesn't seem to do what I want:What would be the correct way to do it?
The text was updated successfully, but these errors were encountered: