Closed bryce-anderson closed 10 years ago
Also of note: I believe the idris elem parser in the readme is also ill typed: string "0123" is of type Parser () as opposed to the declared type of Parser String.
string "0123"
Parser ()
Parser String
Indeed, thank you! I changed the string "0123" to something more abstract.
Also of note: I believe the idris elem parser in the readme is also ill typed:
string "0123"
is of typeParser ()
as opposed to the declared type ofParser String
.