Programming environment for editing various of my live apps without restarting them.
get_default_map = function()
	-- Suggest a map for one's own code.
	-- Mostly the driver manages its map of an app's code outside the app. However, an app can suggest a default map for people who haven't created one.
	live.send_to_app('DEFAULT_MAP')
	local response = wait_for_response()
	return json.decode(response)
end