diff --git a/hello.rb b/hello.rb new file mode 100644 index 0000000..6d35902 --- /dev/null +++ b/hello.rb @@ -0,0 +1,6 @@ +def hello_world + statement = "Hello World!" + return statement +end + +puts hello_world