Guest User

Untitled

a guest
Apr 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. module InstanceMethods
  2. def const_lookup
  3. self.class::A
  4. end
  5. end
  6.  
  7.  
  8. class Consts
  9. A = "Hello World"
  10. include InstanceMethods
  11. end
  12.  
  13. c = Consts.new
  14. puts c.const_lookup
  15.  
  16. sneaky:~ rsl$ ruby test.rb
  17. Hello World
Add Comment
Please, Sign In to add comment