File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,17 @@ class GuideTest {
34
34
35
35
This is a short guide on core features of ` kotlinx.coroutines ` with a series of examples.
36
36
37
+ ## Introduction and setup
38
+
39
+ Kotlin, as a language, provides only minimal low-level APIs in its standard library to enable various other
40
+ libraries to utilize coroutines. Unlike many other languages with similar capabilities, ` async ` and ` await `
41
+ are not keywords in Kotlin and are not even part of its standard library.
42
+
43
+ ` kotlinx.coroutines ` in one such rich library. It contains a number of high-level
44
+ coroutine-enabled primitives that this guide covers, including ` async ` and ` await ` .
45
+ You need to add a dependency on ` kotlinx-coroutines-core ` module as explained
46
+ [ here] ( README.md#using-in-your-projects ) to use primitives from this guide in your projects.
47
+
37
48
## Table of contents
38
49
39
50
<!-- - TOC -->
You can’t perform that action at this time.
0 commit comments