A Wiki in the Desert
Log in

Module:LuaExample

From A Wiki in the Desert
Revision as of 23:29, 16 May 2021 by Omegaice (talk | contribs) (Created page with "local p = {} --p stands for package function p.hello( frame ) return "Hello, world! "..frame.args[1] end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:LuaExample/doc

local p = {} --p stands for package

function p.hello( frame )
    return "Hello, world! "..frame.args[1]
end

return p