Skip to content

Instantly share code, notes, and snippets.

@Arakaki
Created September 5, 2013 13:34
Show Gist options
  • Save Arakaki/6450142 to your computer and use it in GitHub Desktop.
Save Arakaki/6450142 to your computer and use it in GitHub Desktop.
クラスメソッド
class Ruler
attr_accessor :length
#selfでクラスメソッド
def self.pair
[Ruler.new,Ruler.new]
end
end
puts Ruler.pair
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment