此模块的文档可以在模块:8test/doc创建

local p = {} --p stands for package

function p.hello( frame )
	local text = "";
	local i = 0;
	while i < 500 do 
		text = text .. "* " .. i .. "\n"
		i = i + 1;
	end
    return text
end

return p