Skip to content

Instantly share code, notes, and snippets.

@myronmarston
Created June 3, 2013 23:51
Show Gist options
  • Save myronmarston/5702480 to your computer and use it in GitHub Desktop.
Save myronmarston/5702480 to your computer and use it in GitHub Desktop.
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