lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> there is a limit on the recursion depth of C function calls

Otherwise, a Lua client might crash the host app:

	function tostring(x) print(x) end
	print(1)

C function calls use the system's call stack, which is not infinite.