Module:Sandbox

From Tildeverse Wiki
Revision as of 11:02, 6 June 2021 by Smlckz (talk | contribs) (Replaced content with "local M = {} function M.hello(F) local whom = F.args[1] if whom == nil then return 'Hi!' end return Hello, .. whom .. '!' end function M:fizzbuzz() local r = ''...")

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

local M = {}

function M.hello(F)
	local whom = F.args[1]
	if whom == nil then return 'Hi!' end
	return [[Hello, ]] .. whom .. '!'
end

function M:fizzbuzz()
	local r = ''
	for i = 1, 100 do
		local s = ''
		if i % 3 == 0 then
			s = s .. 'Fizz'
		end
		if i % 5 == 0 then
			s = s .. 'Buzz'
		end
		if s == '' then
			s = s .. i
		end
		r = r .. s .. "\n"
	end
	return r
end

local members = mw.loadData [[Module:Sandbox/data]]

local tildes = {}

for _, v in ipairs(members) do
	table.insert(tildes, '* [[' .. v.name .. ']]')
end

M.list = function()
	return table.concat(tildes, "\n")
end

return M