Module:Sandbox/CAS222222221/S

This is an old revision of this page, as edited by 風中的刀劍 (talk | contribs) at 04:05, 11 December 2014 (Created page with 'p = {} local function test( ... ) return a end function p.func(frame) _args = { a = "apple", b = "boy", } return test(_args) 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)
p = {}

local function test( ... )
	return a
end


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

return p