blob: 75fc0ee155b7a6a027d2a9a4bab2ebd5221a0807 [file] [log] [blame]
Roman Elizarova4d45d22017-11-20 16:47:09 +03001/*
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03002 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
Roman Elizarova4d45d22017-11-20 16:47:09 +03003 */
4
5// This file was automatically generated from coroutines-guide.md by Knit tool. Do not edit.
Roman Elizarova9687a32018-06-29 17:28:38 +03006package kotlinx.coroutines.experimental.guide.basic02b
Roman Elizarova4d45d22017-11-20 16:47:09 +03007
8import kotlinx.coroutines.experimental.*
9
10fun main(args: Array<String>) = runBlocking<Unit> { // start main coroutine
11 launch { // launch new coroutine in background and continue
12 delay(1000L)
13 println("World!")
14 }
15 println("Hello,") // main coroutine continues here immediately
16 delay(2000L) // delaying for 2 seconds to keep JVM alive
17}