exercism/crystal/hello-world/src/hello_world.cr

8 lines
126 B
Crystal

# Please implement your solution to hello-world in this file
class HelloWorld
def self.hello
"Hello, World!"
end
end