Guest User

Untitled

a guest
May 26th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class Foo
  2. class << self; attr_accessor :sides; end
  3. @sides = 8
  4. end
  5.  
  6. class Monkey < Foo
  7. def initialize
  8. puts @sides
  9. end
  10. end
Add Comment
Please, Sign In to add comment