Created
December 19, 2016 13:28
-
-
Save thiagoa/ff19fa7737ea10599a6e19b96066cb9d 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
module OneTwoThree | |
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