Skip to content

Instantly share code, notes, and snippets.

@SamGerber-zz
Created December 9, 2015 06:34
Show Gist options
  • Save SamGerber-zz/c2f733fe03193ba68ba7 to your computer and use it in GitHub Desktop.
Save SamGerber-zz/c2f733fe03193ba68ba7 to your computer and use it in GitHub Desktop.
class Universe
def initialize
@answer = "42"
end
end
universe = Universe.new # => #<Universe:0x007f4b34292288 @answer="42">
universe.instance_variables # => [:@answer]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment