Join Slack
Powered by
how can I change this code to make it print `hello...
# coroutines
p
poohbar
02/16/2018, 8:29 PM
how can I change this code to make it print
hello
and then
done
? right now it only prints
done
and finishes:
Copy code
fun main(args: Array<String>) { launch { println("hello") } println("done") }
Open in Slack
Previous
Next