今日のメソッド

a = 1
 
test = \
    if a == 1
    1
    elsif a == 2
    2
    end
 
test # => 1

みたいな書き方ができる。

"test" . to_s
1 . + 1