Skip to content

Instantly share code, notes, and snippets.

@ponga1
Created January 24, 2016 16:20
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 ponga1/ee0f9656f3d7f4675697 to your computer and use it in GitHub Desktop.
Save ponga1/ee0f9656f3d7f4675697 to your computer and use it in GitHub Desktop.
my poor test
class Test
attr_accessor :var
@var = 5
puts @var
end
t = Test.new
puts t.var # returns 0
t.var = 20
puts t.var
t.var = 10
puts t.var
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment