Module:TA4TK:myTest: Difference between revisions

From MaRDI portal
No edit summary
No edit summary
Line 4: Line 4:


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


p.hello_math = function( frame )
p.hello_math = function( frame )
local formula = "sin x"
local str = "sin x"
return mw.text.nowiki(formula)
return str
end
end


return p
return p

Revision as of 14:12, 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 formula = "sin x"
	return mw.text.nowiki(formula) 
end

return p