Module:TA4TK:myTest: Difference between revisions

From MaRDI portal
No edit summary
No edit summary
Line 12: Line 12:
p.hello_math = function( frame )
p.hello_math = function( frame )
local str = "/<math/> sin /</math/>"
local str = "<math> sin /</math/>"
return str
return str

Revision as of 13:54, 3 January 2025

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

p.hello_math = function( frame )
	
	local str = "<math> sin /</math/>"
	
	return str
end

return p