In what order do these messages appear?

from Unity coroutines
Unity 6.6 beginner 2 min

In what order do these messages appear?

csharp
private void Awake()
{
    Debug.Log("awake");
}

private IEnumerator Start()
{
    Debug.Log("start");
    yield return null;
    Debug.Log("next frame");
}
Open in playground
Report an error