Skip to content

Instantly share code, notes, and snippets.

@mbixby
Created April 22, 2012 18:35
Show Gist options
  • Save mbixby/2466077 to your computer and use it in GitHub Desktop.
Save mbixby/2466077 to your computer and use it in GitHub Desktop.
Monads
-- parseExpr :: something -> Either ParseError Expression
convert :: String -> Either String String
convert input = case parseExpr input of
Left err -> Left $ show err
Right x -> Right $ show x
-- Want:
convert = magicfunction show $ parseExpr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment