Jump to content

Module:Sandbox

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 117.212.69.121 (talk) at 05:51, 19 December 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

--ohmoma100
-- [Lua task #3]  Create your own Lua module on English Wikipedia
local p = {}

p.times = function(frame)
	local num = tonumber( frame.args.num ) or 2
	local out = "Times table<br>"
	for i = 1, 10 do
		out = out .. i * num .. "<br>"
	end
	return out
end

return p