Jump to content

Module:Sandbox/Alex 21

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Alex 21 (talk | contribs) at 06:53, 4 April 2016 (Created page with 'local p = {}; function p.main() local s = "test string"; return string.find(s,"<"); end return p;'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {};

function p.main()
	local s = "test string";
	return string.find(s,"<");
end

return p;