<@U5FHN1J7L> commented on <@U5FHN1J7L>’s file <htt...
# coroutines
u
@Kulwinder Singh commented on @Kulwinder Singh’s file https://kotlinlang.slack.com/files/U5FHN1J7L/FA38UJC9L/is_it_right__.kt:
Copy code
fun doAfter(seconds: Long, work: () -> Unit) {
    launch(UI) {
        delay(seconds)
        work.invoke()
    }
}
i have also changed funtions , so is it right now ?