Skip to content

Instantly share code, notes, and snippets.

@rking

rking/foo.rb Secret

Created November 29, 2012 21:05
Show Gist options
  • Save rking/5a30850c42921aa9b1ff to your computer and use it in GitHub Desktop.
Save rking/5a30850c42921aa9b1ff to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
class X
attr_accessor :y
end
p X.new.y = 3
class Z
attr :a
end
p Z.new.a = 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment