Guest User

Untitled

a guest
Aug 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. class Hoge
  2. def initialize
  3. @f = Fuga.new
  4. end
  5.  
  6. attr_reader :f
  7. end
  8.  
  9. class Fuga
  10. def initialize
  11. end
  12. end
  13.  
  14. h = Hoge.new
  15.  
  16. p h.f
Add Comment
Please, Sign In to add comment