10 lines
121 B
Kotlin
Vendored
10 lines
121 B
Kotlin
Vendored
package asyncSimple
|
|
|
|
suspend fun main() {
|
|
val a = 5
|
|
foo()
|
|
//Breakpoint!
|
|
val b = a
|
|
}
|
|
|
|
suspend fun foo() {} |