Skip to content

Instantly share code, notes, and snippets.

@5outh
Created November 13, 2013 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 5outh/7456330 to your computer and use it in GitHub Desktop.
Save 5outh/7456330 to your computer and use it in GitHub Desktop.
main = mapM_ printNotExpr . lines =<< readFile "inputs.txt"
where printNotExpr e = case parseExpr e of
Right x -> print $ not x
Left e -> error $ show e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment