Module:Sandbox/Ahecht/benchmark

This is an old revision of this page, as edited by Ahecht (talk | contribs) at 13:28, 31 March 2022 (return). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.main(frame)
	for i = 1, 1000000 do 
		if mw.ustring.match(" abcde ",'%S') then
			i = i
		end
	end
	return "done"
end

return p