Hello World from IRB

suggest change

Alternatively, you can use the Interactive Ruby Shell (IRB) to immediately execute the Ruby statements you previously wrote in the Ruby file.

Start an IRB session by typing:

$ irb

Then enter the following command:

puts "Hello World"

This results in the following console output (including newline):

Hello World

If you don’t want to start a new line, you can use print:

print "Hello World"

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents