Created
June 3, 2013 23:51
-
-
Save myronmarston/5702480 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 Foo | |
def long_string | |
"a" * 170 | |
end | |
def long_string_with_space | |
long_string = long_string + " " | |
long_string | |
end | |
end | |
puts Foo.new.long_string_with_space |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment