Just like Simple.symbol except you provide a Token to indicate your custom type of problems:
Token
const comma: Parser<Unit, Problem> = symbol(Token("," ExpectingComma))
Just like Simple.symbol except you provide a
Token
to indicate your custom type of problems:See