基本用法
IRB 的意思是“交互式 Ruby Shell”,让我们从标准输入中执行 ruby 表达式。
首先,在你的 shell 中键入 irb
。你可以使用简单的表达式在 Ruby 中编写任何内容:
$ irb
2.1.4 :001 > 2+2
=> 4
复杂的方法,如方法:
2.1.4 :001> def method
2.1.4 :002?> puts "Hello World"
2.1.4 :003?> end
=> :method
2.1.4 :004 > method
Hello World
=> nil