Module:TA4TK:myTest

From MaRDI portal
Revision as of 09:55, 17 December 2024 by Koprucki (talk | contribs) (Created page with "-- Main table to hold all functions local p = {} p.hello = function( frame ) local str = "Hello World!" return str end")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

-- Main table to hold all functions

local p = {}

p.hello = function( frame )
	
	local str = "Hello World!"
	
	return str
end