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