ruby - hello world

This commit is contained in:
2018-09-16 15:03:34 -04:00
parent f32f02a18e
commit d61adb7f9b
4 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
module HelloWorld
def self.hello
"Hello, World!"
end
end