Skip to content

Instantly share code, notes, and snippets.

@bvandgrift
Created April 14, 2009 16:10
Show Gist options
  • Save bvandgrift/95257 to your computer and use it in GitHub Desktop.
Save bvandgrift/95257 to your computer and use it in GitHub Desktop.
if @foo.save && @bar.save
# if @foo fails, then @bar.save never gets called. BAD!
end
# instead:
if @foo.save & @bar.save
# both methods get called regardless
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment