Add support for using ∘ for function composition.

This commit is contained in:
evancz 2013-02-03 02:40:36 -08:00
parent f788fd0ec2
commit 86f2e33949

View file

@ -64,6 +64,7 @@ symOp = do op <- many1 (satisfy isOp)
guard (op `notElem` [ "=", "..", "->", "--", "|", "\8594" ])
case op of
"." -> notFollowedBy lower >> return op
"\8728" -> return "."
_ -> return op
arrow :: IParser String