blob: c3df91d6ba51d987cd7fdb31c92cde515f795cdc [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
// This file was automatically generated from coroutines-guide.md by Knit tool. Do not edit.
package kotlinx.coroutines.experimental.guide.basic05s
import kotlinx.coroutines.experimental.*
fun main(args: Array<String>) = runBlocking<Unit> {
launchDoWorld()
println("Hello,")
}
// this is your first suspending function
suspend fun launchDoWorld() = currentScope {
launch {
println("World!")
}
}