Advertisement
Guest User

Untitled

a guest
Jun 16th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.23 KB | None | 0 0
  1. module Demo
  2.   extend self
  3.   def f
  4.     puts __callee__
  5.   end
  6.   alias g f
  7.   alias_method :h,:f
  8. end
  9.  
  10. Demo.f
  11. Demo.g
  12. Demo.h
  13.  
  14. puts RUBY_PLATFORM
  15. puts RUBY_VERSION
  16. # >> f
  17. # >> g
  18. # >> h
  19. # >> x86_64-darwin16
  20. # >> 2.3.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement