Guest User

Untitled

a guest
Apr 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class Foo
  2. @cvar = "foo"
  3. def foo
  4. @cvar
  5. end
  6.  
  7. def foo=(val)
  8. @cvar = val
  9. end
  10. end
  11.  
  12. a = Foo.new
  13. b = Foo.new
  14.  
  15. puts "This is @cvar for a:" + a.foo
  16. puts "This is @cvar for b:" + b.foo
  17.  
  18. a.foo = "baz"
  19.  
  20. puts "This is @cvar for a:" + a.foo
  21. puts "This is @cvar for b:" + b.foo
Add Comment
Please, Sign In to add comment