Documentation for this module may be created at Module:Sandbox/OzanMirza1/doc
-- Google Code-in, Introduction to Lua in Wikipedia -- Google Code-in, Lua Task 2 - Working with modules local p = {} -- p stands for package function p.hello( frame ) return "Hello, world!" end return p