From 986c556cf32c82e448b8c422a92f04c9bffcede0 Mon Sep 17 00:00:00 2001 From: chaim chazan Date: Fri, 4 Jun 2021 22:28:30 +0000 Subject: [PATCH] Done. --- README.md | 4 ++-- variable.rb | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 159db1e..24c2e1a 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # Variable Assignment - +greeting = ## Objectives 1. Assign a local variable. - + "Hello, World" ## Instructions You will assign a local variable named `greeting` that is equal to `"Hello World"`. diff --git a/variable.rb b/variable.rb index 12b0726..c0090ea 100644 --- a/variable.rb +++ b/variable.rb @@ -1,2 +1,3 @@ # Define a local variable called 'greeting', # give it the value of the string "Hello World" +greeting = "Hello World" \ No newline at end of file