Guest User

Untitled

a guest
May 26th, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. module Foo
  2. module_function
  3.  
  4. def wtf?
  5. 'wtf?'
  6. end
  7. end
  8.  
  9. Foo.wtf? #=> 'wtf?'
  10.  
  11. module Bar
  12. extend self
  13.  
  14. def lol!
  15. 'lol!'
  16. end
  17. end
  18.  
  19. Bar.lol! #=> 'lol!'
Advertisement
Add Comment
Please, Sign In to add comment