Coroutines Builders: The launch Builder
Learn about the launch coroutine builder of the kotlinx.coroutines library.
We'll cover the following...
The launch
builder
Conceptually, the launch
works similarly to starting a new thread (thread
function). We start a coroutine, which will run independently, like a firework ...