2016-12-09から1日間の記事一覧

20分ではじめるRubyPico を読む「複数行にまたがるプログラム」

irb - Interactive Ruby Shell irb:000> def hello; puts "Hello World!"; end => :hello irb:001> hello Hello World! => nil irb:002> def hello line 1: syntax error, unexpected $end, expecting ';' or '\n' irb:003> CRubyだと >> def hello >> puts …