How to use korutiny in prode and sleep at night - HabraHabr.Info
https://habrahabr.info/development/kotlin/6551-how-to-use-korutiny-in-prode-and-sleep-at-night.html
Korutiny - a powerful tool for asynchronous code execution. They work in parallel, communicate with each other and consume few resources.
Korutiny v Kotline | robonovotny
https://novotnyr.github.io/scrolls/korutiny-v-kotline/
Korutiny v Kotline. V bežnej Jave sa spúšťanie úloh na pozadí (teda paralelný beh úloh) dá dosiahnuť pomocou vlákien (threads). Tento mechanizmus však môže byť natoľko komplikovaný...
Coroutines (C++20) - cppreference.com
https://en.cppreference.com/w/cpp/language/coroutines
A coroutine is a function that can suspend execution to be resumed later. Coroutines are stackless: they suspend execution by returning to the caller and the data that is required to resume execution is stored separately from the stack.