sys/lua/hc/core/main.lua
http://pastebin.com/7AM97661
function f(...) 	local arg = {...} -- This would be the "quickest" replacement end
function f(...) 	print("arg = "..tostring(arg)) 	for k, v in pairs(arg) do 		print("argument "..tostring(k).." = "..tostring(v)) 	end end