Module:Test: Difference between revisions

From Wiki of ZZT
Jump to navigation Jump to search
(Playing around with Scribunto)
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
local p = {};
local p = {};
p.hello = function (frame)
p.hello = function (frame)
return "Hello, world!"
return "Hello, {{{1}}}!"
end
end
return p
return p

Latest revision as of 06:32, 14 June 2020

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

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