Module 00 Β· Welcome to Ruby β Lesson 3 of 3 Β· ~9 min
Hello, Ruby
irb: type a line, see an answer
Open a terminal and type irb β Interactive Ruby, a REPL you already have thanks to mise. Every line you type runs immediately and prints its result:
$ irb irb(main):001> 2 + 2 => 4
Keep an irb tab open through this whole course. When you're not sure what something does, don't guess β try it.