Module:Sandbox/Sameboat/m1

This is an old revision of this page, as edited by Sameboat (talk | contribs) at 23:20, 27 January 2015. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.link(frame)
local f = frame.args[1]
for i = 5, 11, 0.5 do
f=tonumber(f)*i
return i .. "," .. f
end
end
 
return p