From 0f5e8fe1460d6980b3c5117655dfaf5f9873c5c1 Mon Sep 17 00:00:00 2001 From: kyle molidor Date: Tue, 11 Feb 2020 07:04:51 +0000 Subject: [PATCH] Done. --- README.md | 1 + variable.rb | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 159db1e..019b9e1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + # Variable Assignment ## Objectives diff --git a/variable.rb b/variable.rb index 12b0726..e09b5f0 100644 --- a/variable.rb +++ b/variable.rb @@ -1,2 +1,5 @@ # Define a local variable called 'greeting', # give it the value of the string "Hello World" + +greeting = "Hello World" +puts greeting \ No newline at end of file