Module:Sandbox/Petr Matas

Revision as of 16:28, 25 April 2018 by imported>Petr Matas
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/Petr Matas/doc

local p = {}

function p.main(frame)
	local parent = frame:getParent()

	return
		'frame.args is ' .. type(frame.args) ..
		', frame.args[1] = ' .. (frame.args[1] or 'nil') ..
		', parent.args[1] = ' .. (parent.args[1] or 'nil')
end

return p