Module:Test: Difference between revisions

From Wiki of ZZT
Jump to navigation Jump to search
(Playing around with Scribunto)
 
No edit summary
Line 1: Line 1:
local p = {};
local p = {};
p.hello = function (frame)
p.hello = function (frame)
return "Hello, world!"
return "Hello, {{{1|world}}}!"
end
end
return p
return p

Revision as of 06:29, 14 June 2020

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

local p = {};
p.hello = function (frame)
	return "Hello, {{{1|world}}}!"
end
return p