Documentation for this module may be created at Module:Sandbox/koru1130/doc
-- koru1130 Google Code-in 2017, Introduction to Lua in Wikipedia.
-- Lua task #03
local p = {} -- p stands for package
function p.hello( frame )
return "Hello, world!"
end
return p