Module:Sandbox/ShahJahanIshaq19

Revision as of 11:22, 16 January 2020 by imported>ShahJahanIshaq19
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

--Shah Jahan Ishaq Google Code-in 2019, Introduction to Lua in Wikipedia
--Working with modules
local p = {}

function p.hello( frame )
	return "Hello, world!"
end

p.Hi = function(frame)
	strName = frame.args.name or "Jimmy"
	return "Hello from Lua to my friend " .. strName .. ".<br>"
end

return p