Content deleted Content added
No edit summary |
No edit summary |
||
Line 25:
end
return msg
end
-- Task 4
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
|