Guest User

Untitled

a guest
Jul 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. ## Get the values from outside the class.
  2.  
  3. class A
  4. def initialize
  5. @a = 11
  6. @@a = 22
  7. a = 33
  8. end
  9. @a = 1
  10. @@a = 2
  11. a = 3
  12. end
Add Comment
Please, Sign In to add comment