Module:Sandbox/Sameboat/m1

This is an old revision of this page, as edited by Sameboat (talk | contribs) at 04:42, 28 January 2015. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}
local pframe = frame:getParent()
local config = frame.args  -- arguments from the template definition
local args = pframe.args   -- arguments from the page calling the template

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