Guest User

Untitled

a guest
Nov 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class Test
  2.  
  3. def initialize code
  4. @rule = gen_instance code
  5. end
  6.  
  7. def gen_instance code
  8. puts "instantiating code"
  9. instantiate code
  10. end
  11. end
  12.  
  13. class Test2
  14.  
  15. def initialize code
  16. gen_instance code
  17. end
  18.  
  19. def gen_instance code
  20. puts "instantiating code"
  21. @rule = instantiate code
  22. end
  23. end
Add Comment
Please, Sign In to add comment