Menu
Coddy logo textTech

Hello World

Part of the Fundamentals section of Coddy's Ruby journey — lesson 2 of 88.

The "Hello World!" is a simple program that outputs Hello World! to the screen.

In Ruby, we use puts to show words on the screen. The words go inside quotation marks.

Let's take a look at the "Hello World!" program in Ruby:

puts "Hello World!"
challenge icon

Challenge

Easy

Use the code view to write a program that outputs Hello World!

Note that anything inside quotation marks is case sensitive. For example:

puts "Hello World!"
puts "hello world!"

are different things (notice the capital letters in the first line).

Cheat sheet

To print to the screen in Ruby use puts:

puts "Hello World!"

Text inside quotation marks is case sensitive.

Try it yourself

# TODO: Write your code here
quiz iconTest yourself

This lesson includes a short quiz. Start the lesson to answer it and track your progress.

All lessons in Fundamentals