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