aboutsummaryrefslogtreecommitdiffstats
path: root/kotlinx-coroutines-core/jvm/test/guide/example-basic-08.kt
diff options
context:
space:
mode:
Diffstat (limited to 'kotlinx-coroutines-core/jvm/test/guide/example-basic-08.kt')
-rw-r--r--kotlinx-coroutines-core/jvm/test/guide/example-basic-08.kt17
1 files changed, 0 insertions, 17 deletions
diff --git a/kotlinx-coroutines-core/jvm/test/guide/example-basic-08.kt b/kotlinx-coroutines-core/jvm/test/guide/example-basic-08.kt
deleted file mode 100644
index 0a346e0b..00000000
--- a/kotlinx-coroutines-core/jvm/test/guide/example-basic-08.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
- */
-
-// This file was automatically generated from coroutines-basics.md by Knit tool. Do not edit.
-package kotlinx.coroutines.guide.exampleBasic08
-
-import kotlinx.coroutines.*
-
-fun main() = runBlocking {
- repeat(100_000) { // launch a lot of coroutines
- launch {
- delay(5000L)
- print(".")
- }
- }
-}