Module:TA4TK:myTest

From MaRDI portal
Revision as of 10:09, 17 December 2024 by Koprucki (talk | contribs)

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.schroedinger = function ( frame )

	local str = "\\mathrm i\\hbar \frac{d}{dt} |\\Psi(t)\rangle = \\hat{H} |\\Psi(t)\rangle"
	
	return str
end

return p