Raj Bopche
02/05/2023, 5:28 PMephemient
02/05/2023, 9:50 PMRaj Bopche
02/07/2023, 3:51 AMlaunch{ }ephemient
02/07/2023, 3:55 AMimport kotlinx.coroutines.*
suspend fun main() = coroutineScope<Unit> {
    launch {
        println("Hello, world!!!")
    }
}Raj Bopche
02/07/2023, 3:56 AMlaunch{}John Matthews
02/17/2023, 3:34 PM