Jump to content

Module:Sandbox/Arcayn

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Arcayn (talk | contribs) at 16:36, 24 October 2018 (Added the "Hello World" code to the module). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
-- Arcayn, Google Code In, Introduction to Lua in Wikipedia

-- Task 02
local p = {}

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

return p