Difference between revisions of "Module:Test"

From PKC
Jump to navigation Jump to search
Line 1: Line 1:
p = {}
p = {}


function p.hello_world()
function p.hello_world(a)
return "Hello, world! from {{{name}}}}"
return "Hello, world! from a"
end
end


return p
return p

Revision as of 08:42, 9 August 2021

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

p = {}

function p.hello_world(a)
	return "Hello, world! from a"
end

return p