Skip to content

Instantly share code, notes, and snippets.

@reagent
Created October 17, 2012 17:26
Show Gist options
  • Save reagent/3906873 to your computer and use it in GitHub Desktop.
Save reagent/3906873 to your computer and use it in GitHub Desktop.
class Bar
def initialize(name)
@name = name
end
def to_str
@name
end
end
thing = Bar.new('dood')
puts "a " + thing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment