diff --git a/spec/variable_spec.rb b/spec/variable_spec.rb index ab66936..36dbcc9 100644 --- a/spec/variable_spec.rb +++ b/spec/variable_spec.rb @@ -8,3 +8,5 @@ end end + +greeting = "Hello World" \ No newline at end of file diff --git a/variable.rb b/variable.rb index 12b0726..5b7472c 100644 --- a/variable.rb +++ b/variable.rb @@ -1,2 +1,4 @@ # Define a local variable called 'greeting', # give it the value of the string "Hello World" + +greeting ="Hello World" \ No newline at end of file