Skip to content

Instantly share code, notes, and snippets.

@thurloat
Created January 11, 2013 19:17
Show Gist options
  • Save thurloat/80d9fdccd9e07aa8279e to your computer and use it in GitHub Desktop.
Save thurloat/80d9fdccd9e07aa8279e to your computer and use it in GitHub Desktop.
yawwwn
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