Jump to content

Module:Sandbox/A ka es

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by A ka es (talk | contribs) at 14:42, 14 August 2019. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--this is a comment
--task2

p = {} -- empty table

function p.FirstTry(frame)
	return "Hello World"
end

p.Hi = function(frame)
	anyName = frame.args.name
	return "Hello from luoa to my friend " .. anyName .. ".<br>" -- .. catanation
end

return p