Skip to content

Instantly share code, notes, and snippets.

Created April 7, 2016 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/07a5f696c1b273517098b4fcc5af6c6d to your computer and use it in GitHub Desktop.
Save anonymous/07a5f696c1b273517098b4fcc5af6c6d to your computer and use it in GitHub Desktop.
class Test
def self.say_hi
puts "hi"
end
def self.say_bye
puts "bye"
end
def self.say_both
self.say_hi
self.say_bye
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment