brk
import kotlinx.coroutines.experimental.* fun main(args: Array<String>): Unit { runBlocking { delay(1000) println("hello world") } }