Jump to content

Module:Sandbox/Gitgit123hub/test

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Gitgit123hub (talk | contribs) at 10:12, 12 November 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}
function f()
	local a = f()
	return a
end
function p.test()
	local b, c = pcall(f)
	return c
end
return p