Skip to content

Instantly share code, notes, and snippets.

@claudijd
Last active August 29, 2015 14:02
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 claudijd/68a36514d4149db1395d to your computer and use it in GitHub Desktop.
Save claudijd/68a36514d4149db1395d to your computer and use it in GitHub Desktop.
Ruby Multi-line Conditional Style Example
if a == 1 &&
b == 2
#do_stuff
end
if a == 1 && b == 2
#do_stuff
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment