Guest User

Untitled

a guest
Jul 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # create a namespace to avoid naming collisions
  2. module Example
  3.  
  4. class String
  5. def length
  6. 100
  7. end
  8. end
  9.  
  10. end
  11.  
  12. # usage
  13. String.new.length # => 0
  14. Example::String.new.length # => 100
Add Comment
Please, Sign In to add comment