Created
August 5, 2014 22:57
-
-
Save Zhomart/e17a288ff1273cf98825 to your computer and use it in GitHub Desktop.
mxin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mixin module | |
module Chaika | |
def est_nahyalyavu | |
puts "Yeah" | |
end | |
def shout! | |
puts "I am a chaika!!!" | |
end | |
def zaplatit | |
raise "no way" | |
end | |
end | |
class Post::House | |
include Chaika | |
end | |
house = Post::House.new | |
house.shout! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment