-
-
Save marocchino/4655927 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
def some_method | |
return false if aaaaaaaaaaaa && bbbbbbbbbbbb | |
return false if cccccccccccc || dddddddddddd | |
return false if eeeeeeeeeeee && ffffffffffff | |
do_something | |
end |
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
def some_method | |
if (aaaaaaaaaaaa && bbbbbbbbbbbb) || | |
(cccccccccccc || dddddddddddd) || | |
(eeeeeeeeeeee && ffffffffffff) | |
false | |
else | |
do_something | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment