basyura's blog

あしたになったらほんきだす。

1行で変数セット

class Test
  def initialize(a,b,c)
    @a = a
    @b = b
    @c = c
  end
end

と書くより↓と書いた方が綺麗

class Test
  def initialize(a,b,c)
    @a , @b , @c = a ,b ,c
  end
end