Created
October 10, 2014 15:49
-
-
Save kbaribeau/4b35d7c19f0405e0c82e to your computer and use it in GitHub Desktop.
tap
This file contains hidden or 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 foo | |
s = "something complicated" | |
do_other_stuff | |
s | |
end | |
def bar | |
"something complicated".tap do | |
do_other_stuff | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment