Starting runnables

Report a typo

Implement a method that takes an array of runnables. The method must start each runnable in a new thread.

Write a program in Kotlin
fun startRunnables(runnables: Array<Runnable>) {
// implement the method
}
___

Create a free account to access the full topic