Guest User

Untitled

a guest
Nov 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. module MyMod
  2. def test
  3. "ohai"
  4. end
  5. end
  6.  
  7. class MyClass
  8. extend MyMod
  9. end
  10.  
  11. MyClass.test # => "ohai"
Add Comment
Please, Sign In to add comment