Skip to content

Instantly share code, notes, and snippets.

@dcki
Created February 13, 2016 04:49
Show Gist options
  • Save dcki/06e392b3f53fc8b05ccd to your computer and use it in GitHub Desktop.
Save dcki/06e392b3f53fc8b05ccd to your computer and use it in GitHub Desktop.
class A
attr_accessor :b
def initialize
b = 1
end
def foo
p b
end
end
A.new.foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment