Menu
Coddy logo textTech

Welcome Message

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

challenge icon

Challenge

Easy

In this chapter, you'll build a Bill Split Calculator that helps divide restaurant bills among friends.

Display a welcome message for the calculator using puts. The output should be exactly:

Welcome to the Bill Split Calculator!
Let's split your bill fairly.

Make sure each line appears on its own line using the newline character \n.

Try it yourself

# TODO: Write your code below
# Use puts to display the welcome message
# Remember to use \n for new lines

All lessons in Fundamentals