Created
May 7, 2015 15:49
-
-
Save YanTheFawn/c2b1af38b06e452e236d to your computer and use it in GitHub Desktop.
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
irb(main):001:0> module Dog | |
irb(main):002:1> def bark | |
irb(main):003:2> puts 'woof' | |
irb(main):004:2> end | |
irb(main):005:1> end | |
=> :bark | |
irb(main):006:0> module Yanik | |
irb(main):007:1> include Dog | |
irb(main):008:1> end | |
=> Yanik |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment