Module:Gryllida/NewArticle/review/1

There are no reviewed versions of this page, so it may not have been checked for adherence to standards.
[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