Module:TA4TK:myTest: Difference between revisions

From MaRDI portal
Koprucki (talk | contribs)
No edit summary
Koprucki (talk | contribs)
No edit summary
Tag: Manual revert
Line 6: Line 6:
local str = "Hello World!"
local str = "Hello World!"
return str
end
p.schroedinger = function ( frame )
local str = '<math>e^{i\\pi}+1=0</math>'
return str
return str

Revision as of 10:15, 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