diff --git a/README.md b/README.md index b9741671..169db6e5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Welcome Message for Tic Tac Toe +puts "Welcome to Tic Tac Toe!" + -## Overview We're going to build a simple program that implements only the very first thing a complete Tic Tac Toe program would require, which is to greet the player with a welcome message. diff --git a/lib/welcome.rb b/lib/welcome.rb index 6effb74c..69652d1d 100644 --- a/lib/welcome.rb +++ b/lib/welcome.rb @@ -1,3 +1,3 @@ -# Edit this file to output "Welcome to Tic Tac Toe!" +puts "Welcome to Tic Tac Toe!"# Edit this file to output "Welcome to Tic Tac Toe!" # You can see what this file does by running: # ruby lib/welcome.rb from your terminal.