Module:TA4TK:myTest: Difference between revisions

From MaRDI portal
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"
 
Koprucki (talk | contribs)
No edit summary
Line 9: Line 9:
return str
return str
end
end
return p

Revision as of 10:01, 17 December 2024

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

return p