Created
December 2, 2014 20:22
-
-
Save cwoodcox/097a053ab4804f86c07e to your computer and use it in GitHub Desktop.
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
class StringJoiner | |
def call string1, string2 | |
"#{string1}#{string2}" | |
end | |
end | |
join = StringJoiner.new | |
join.call("this ", "is normal") | |
# => "this is normal" | |
join.("this ", "is new") | |
# => "this is new" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment