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