Jump to content

Module:Sandbox/TimurO

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by TimurO (talk | contribs) at 08:27, 11 January 2018. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
-- TimurO Google Code-in 2017, Introduction to Lua in Wikipedia.

-- TimurO Google Code-in 2017, Create your own Lua module on English Wikipedia
local p = {} -- p stands for package

function p.hello( frame )
    return "Hello, world!"
end

return p