Jump to content

Module:Sandbox/AngC10

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by AngC10 (talk | contribs) at 05:07, 20 November 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--AngC10 Google Code-in, Introduction to Lua in Wikipedia

--AngC10 Google Code-in, Working with Modules
local p = {} -- p stands for package

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

return p