Skip to content

Instantly share code, notes, and snippets.

@billdozr
Created June 24, 2010 10:29
Show Gist options
  • Save billdozr/451292 to your computer and use it in GitHub Desktop.
Save billdozr/451292 to your computer and use it in GitHub Desktop.
parseMeta :: Parser (Maybe Char, Maybe Double)
parseMeta = do char '('
priority <- optionMaybe (oneOf "HML")
timeSpent <- optionMaybe
(many (noneOf ")") >>= \sd ->
do return $ (read sd :: Double))
char ')'
return (priority, timeSpent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment