Skip to content

Instantly share code, notes, and snippets.

@cawel
Created November 19, 2014 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cawel/edffa2085b8c3a7a0de9 to your computer and use it in GitHub Desktop.
Save cawel/edffa2085b8c3a7a0de9 to your computer and use it in GitHub Desktop.
blog-quiz-intermediate
class A
attr_accessor :var
def method
var = 45
end
end
a = A.new
a.method
puts a.var
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment