Guest User

Untitled

a guest
Jul 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class A
  2. def initialize
  3. @foo = "bar"
  4. end
  5. end
  6.  
  7. class B < A
  8. def initialize
  9. super # invoke the super initialize
  10.  
  11. @baz = "zeta"
  12. end
  13. end
Add Comment
Please, Sign In to add comment