Module:Gryllida/NewArticle/review/1

From Wikinews, the free news source you can write!
Jump to navigation Jump to search
[create] Documentation
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