高木のブログ

Rubyのクラスの書き方

· 17 words · 1 minutes to read
Tags: Ruby

簡単なのにいつも忘れるからメモ。マジでメモ。

class User
  attr_accessor :name, :age

  def initialize(name, age)
    @name = name
    @age = age
  end
end

Categories


Tags