Module:Learn Lua

From Livermore History Collaborative
Revision as of 22:18, 25 November 2025 by Bmcfann (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Learn Lua/doc

p = {}

p.loop = function(frame)
	local out = {}

	for idx = 1, 5 do
		table.insert(out, idx)
	end

	return table.concat(out, "<br>")
end

return p