exercism.org/lua/hello-world/hello-world.lua

8 lines
102 B
Lua
Raw Normal View History

2024-03-24 18:34:11 +01:00
local hello_world = {}
function hello_world.hello()
return 'Hello, World!'
end
return hello_world