Created
December 19, 2016 13:28
-
-
Save thiagoa/21ab903d323e132c042599fc0176b532 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
OneTwoThree = Module.new do | |
def one | |
puts 'one was defined as an instance method' | |
end | |
def two | |
puts 'two was defined as an instance method' | |
end | |
def three | |
puts 'three was defined as an instance method' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment