Module:Sandbox

From Nookipedia, the Animal Crossing wiki
Revision as of 00:47, September 10, 2020 by SuperHamster (talk | contribs) (Creating sandbox for testing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Module documentation (view)


Usage

This is the general sandbox page to test out Lua modules. The module should not be implemented in a template.


local p = {}

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

-- Return empty string:
function p.empty( frame )
    return ""
end

return p