Occasional programming notes
type Parser a = String => [(a, String)]
A Parser for Things is a function from Strings to Lists of Pairs of Things and Strings!