Guest User

Untitled

a guest
Sep 2nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.22 KB | None | 0 0
  1. module Poopy
  2.   def poopy
  3.     "poopy"
  4.   end
  5. end
  6.  
  7. module Face
  8.   class << self
  9.     def face
  10.       "face"
  11.     end
  12.   end
  13. end
  14.  
  15. class Matty
  16.   include Poopy
  17.   include Face
  18. end
  19.  
  20. p "#{Matty.new.poopy} #{Matty.face}"
Add Comment
Please, Sign In to add comment