Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0104-call_protected
call_protected = function(f, ...)
	local args = {...}
	xpcall(
		function()
			print = print_to_output
			f(unpack(args))
			print = Real_print
		end,
		send_errors_to_output)
end