irb -- Interactive Ruby Shell
irb is the REPL(read-eval-print loop) environment for Ruby programs.
REPL (Read-Eval-Print Loop) 环境
REPL 环境只是表现得像是即时的解释执行,但是其实质还是每次输入代码后进行编译再运行。
参考:[http://blog.csdn.net/id19870510/article/details/5278562]
本文共 285 字,大约阅读时间需要 1 分钟。
irb -- Interactive Ruby Shell
irb is the REPL(read-eval-print loop) environment for Ruby programs.
REPL (Read-Eval-Print Loop) 环境
REPL 环境只是表现得像是即时的解释执行,但是其实质还是每次输入代码后进行编译再运行。
参考:[http://blog.csdn.net/id19870510/article/details/5278562]
转载于:https://www.cnblogs.com/ciciki/p/4904988.html