Skip to content

Instantly share code, notes, and snippets.

@lutzky
Created December 29, 2008 21:52
Show Gist options
  • Save lutzky/41404 to your computer and use it in GitHub Desktop.
Save lutzky/41404 to your computer and use it in GitHub Desktop.
class Container < Struct.new :val
def inspect
return "&<#{val.inspect}>"
end
end
irb(main):010:0> a = Container.new(5)
=> &<5>
irb(main):011:0> s = [a,a]
=> [&<5>, &<5>]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment