1 /*
2  * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 // This file was automatically generated from coroutine-context-and-dispatchers.md by Knit tool. Do not edit.
6 package kotlinx.coroutines.guide.exampleContext05
7 
8 import kotlinx.coroutines.*
9 
<lambda>null10 fun main() = runBlocking<Unit> {
11     println("My job is ${coroutineContext[Job]}")
12 }
13