Skip to content

Instantly share code, notes, and snippets.

@srhb
Created January 15, 2012 22:38
Show Gist options
  • Save srhb/1617792 to your computer and use it in GitHub Desktop.
Save srhb/1617792 to your computer and use it in GitHub Desktop.
line = do
option <- many $ noneOf "=\n"
char '='
values <- (many $ noneOf ",\n") `sepBy` (char ',')
return (option, values)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment