>>>

Write a function that uses bindParser but ignores the value that is produced by the given parser. This will be useful for example, when we wish for a parser to consume white-space but not do anything with that white-space.

(>>>) :: Parser a -> Parser b -> Parser b
p >>> q = bindParser p (\_ -> q)