Module:TA4TK:myTest

From MaRDI portal
Revision as of 14:39, 3 January 2025 by Shehu (talk | contribs)

Documentation for this module may be created at Module:TA4TK:myTest/doc

-- Main table to hold all functions

local p = {}
function p.hello()
	local str = "Hello World!"
	return str
end
function p.renderFormula()
    local formula = "sin x" -- LaTeX formula
end
return p