From Wikinews, the free news source you can write!
There are no
reviewed versions of this page, so it may
not have been checked for adherence to standards.
local p = {}
function p.hello(frame)
local array = frame.args
local output = ''
for index, value in ipairs(array) do
output = output .. value
end
return output
end
return p