Module:Sprite: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local p = {}


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

Revision as of 03:30, 27 May 2022

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

local p = {}

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

return p