Created
June 28, 2013 21:08
-
-
Save lucassmagal/5888129 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(foo == 1 && | |
bar == 2 && | |
baz == 3) { | |
// do something | |
} | |
// é o mesmo de | |
if(foo == 1) | |
if(bar == 2) | |
if(baz == 3) { | |
// do something | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment