#Ruby for beginners | Playing a method chain combining class methods and instance methods
次のクラスを使って OK! と表示させてください
class Story
def initialize(to: false)
@to = to
end
def be
@be = true
self
end
def continued
puts 'OK!' if @to && @be
end
def self.to
new(to: true)
end
end
Original by Github issue
チャットメンバー募集
何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。