Module:Sandbox/BigGreenCahuna
Appearance
local p = {}
function p.hello( frame )
local args=frame.args
output = "Bob "
--
local done = 0
local i = 1
while done == 0 do
if args[i] == nil then
output = output.." End."
done = 1
else
output = output.." "..args[i]
i=i+1
end
end
--output=output..frame:preprocess(" <ref>Ref 1</ref><P>==Notes==<BR>{{Reflist|group=N}}")
local parent = frame:getParent(frame)
output=output.." "..tableToString(parent.args)
return output
end
return p