animal = 'hippopotamus' if animal.size > 10 puts "You must idiot!" else puts "You are good in size." end # >> You must idiot! しかし、たかがメッセージの出力にこんなに行数を消費したくはない、と思うのが平均的なRubyistの思考で
animal = 'hippopotamus' if animal.size > 10 puts "You must be an idiot!" else puts "You are good in size." end # >> You must be an idiot! しかし、たかがメッセージの出力にこんなに行数を消費したくは...
animal = 'hippopotamus' if animal.size > 10 puts "You must idiot!" else puts "You are good in size." end # >> You must idiot! しかし、たかがメッセージの出力にこんなに行数を消費したくはない、と思うのが平均的なRubyistの思考で
poppun1940 のブックマーク 2014/04/18 22:47
このブックマークにはスターがありません。
最初のスターをつけてみよう!