From 8d40b075b198a95b57d697ba637abf16d0508dce Mon Sep 17 00:00:00 2001 From: Ryan Kendig Date: Thu, 8 Oct 2020 22:18:00 +0000 Subject: [PATCH] Done. --- README.md | 1 + hello_world.rb | 1 + spec/hello_world_spec.rb | 2 ++ 3 files changed, 4 insertions(+) create mode 100644 hello_world.rb diff --git a/README.md b/README.md index 461e916..e0dc201 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ $ ruby hello_world.rb Hello World! ``` + ### Running Learn Confirm everything is working by running the `learn` command. You should see that all tests are passing (e.g. no red error text). diff --git a/hello_world.rb b/hello_world.rb new file mode 100644 index 0000000..7f09b2f --- /dev/null +++ b/hello_world.rb @@ -0,0 +1 @@ +puts "Hello World!" \ No newline at end of file diff --git a/spec/hello_world_spec.rb b/spec/hello_world_spec.rb index 278ec81..55b62bb 100644 --- a/spec/hello_world_spec.rb +++ b/spec/hello_world_spec.rb @@ -10,3 +10,5 @@ load './hello_world.rb' end end + +