Skip to content

Instantly share code, notes, and snippets.

@radex
Created April 29, 2015 14:16
Show Gist options
  • Save radex/d77cd6a3f2c198a40daf to your computer and use it in GitHub Desktop.
Save radex/d77cd6a3f2c198a40daf to your computer and use it in GitHub Desktop.
# this doesn't do what you think it does
if f = foo && b = bar; end
# this works:
if (f = foo) && (b = bar); end
# and this works:
if f = foo and b = bar; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment