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 + +