# from https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Classes
class MyClass
  def self.some_method
    puts 'something'
  end
end
MyClass.some_method
