1 // This file was automatically generated from coroutine-context-and-dispatchers.md by Knit tool. Do not edit. 2 package kotlinx.coroutines.guide.exampleContext09 3 4 import kotlinx.coroutines.* 5 <lambda>null6fun main() = runBlocking<Unit> { 7 launch(Dispatchers.Default + CoroutineName("test")) { 8 println("I'm working in thread ${Thread.currentThread().name}") 9 } 10 } 11