A lightweight programming environment for desktop and mobile devices
print_to_output = function(...)
	local args = pack(...)
	local line = table.concat(map_nil(args, tostring), ' ')
	table.insert(Current_pane.output_editor_state.lines,
		{data=line})
end