Guest User

Untitled

a guest
Nov 20th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. class A
  2.  
  3. class << self
  4. private
  5.  
  6. def foo
  7. puts "bar"
  8. end
  9. end
  10.  
  11. foo # outputs bar
  12.  
  13. end
  14.  
  15. A.foo # raises an error
Add Comment
Please, Sign In to add comment