Created
January 11, 2013 19:17
-
-
Save thurloat/80d9fdccd9e07aa8279e to your computer and use it in GitHub Desktop.
yawwwn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ops = | |
"=": (l,r) -> l is r | |
">": (l,r) -> l > r | |
"<": (l,r) -> l < r | |
">=": (l,r) -> l >= r | |
"<=": (l,r) -> l <= r | |
"<>": (l,r) -> l <> r | |
"is null": (l) -> l is null | |
"is not null": (l) -> l is not null | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment