Skip to content

Instantly share code, notes, and snippets.

@hejrobin
Last active August 29, 2015 14:07
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 hejrobin/746a7c9ca1fbdd0289a3 to your computer and use it in GitHub Desktop.
Save hejrobin/746a7c9ca1fbdd0289a3 to your computer and use it in GitHub Desktop.
Grammar.coffee
a is not b
# a === !b << baad mkay?
a isnt b
# a !== b << mmh'guud!
unless a is not b
# a === !b << bara dumt, ok?
a === !b;
a !== b;
if(a !== !b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment