Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Created December 19, 2016 13:28
Show Gist options
  • Save thiagoa/ff19fa7737ea10599a6e19b96066cb9d to your computer and use it in GitHub Desktop.
Save thiagoa/ff19fa7737ea10599a6e19b96066cb9d to your computer and use it in GitHub Desktop.
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