Module:Sandbox/CAS222222221/S

This is an old revision of this page, as edited by 風中的刀劍 (talk | contribs) at 04:08, 11 December 2014. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
p = {}

local function test(_args)
	a = _args.a
	return a
end


function p.func(frame)
	_args = {
		a = "apple",
		b = "boy",
	}
	
	return test(_args)
end

return p