Coroutine Managementthreadthread Description: Creates a new coroutine from a function and executes it. Signature: thread: function(routine: function()): Routine.Job Parameters: ParameterTypeDescriptionroutinefunctionA function to execute as a coroutine. Returns: Return TypeDescriptionRoutine.JobA handle to the coroutine that was created.