diff --git a/examples/source/docs/coroutine_thread.cpp b/examples/source/docs/coroutine_thread.cpp index 8113b90b..5824f9aa 100644 --- a/examples/source/docs/coroutine_thread.cpp +++ b/examples/source/docs/coroutine_thread.cpp @@ -30,6 +30,7 @@ end for (int counter = 0; counter < 10 && loop_coroutine; ++counter) { // Call the coroutine, does the computation and then suspends int value = loop_coroutine(); + std::cout << "value is " << value << std::endl; } return 0;