Skip to content

Instantly share code, notes, and snippets.

@joshnesbitt
Created August 6, 2015 13:33
Show Gist options
  • Save joshnesbitt/c6994b97ab3021a9e710 to your computer and use it in GitHub Desktop.
Save joshnesbitt/c6994b97ab3021a9e710 to your computer and use it in GitHub Desktop.
class MyClass
def one_method
puts "Hey!"
end
end
class MyClass
def second_method
puts "Hey again!"
end
end
klass = MyClass.new
klass.one_method
klass.second_method
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment