From 3c66365a20bd54012749dc7c4dba3ea96ceee32f Mon Sep 17 00:00:00 2001 From: Jonathan Mattos Date: Sun, 11 Oct 2020 23:37:16 +0000 Subject: [PATCH] Done. --- spec/variable_spec.rb | 2 ++ variable.rb | 2 ++ 2 files changed, 4 insertions(+) diff --git a/spec/variable_spec.rb b/spec/variable_spec.rb index ab66936..51f891f 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