Guest User

Untitled

a guest
Jul 5th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.14 KB | None | 0 0
  1. module A
  2.  
  3.   def lol
  4.     puts "lol"
  5.   end
  6.  
  7. end
  8.  
  9. module A
  10.   class B
  11.  
  12.     def initialize
  13.       lol
  14.     end
  15.  
  16.   end
  17. end
  18.  
  19.  
  20. A::B.new
Advertisement
Add Comment
Please, Sign In to add comment