Create a Callable

Report a typo

Implement the getCallable() method. It should create a Callable<String> object, which contains a String value from the input.

Write a program in Kotlin
import java.util.concurrent.Callable

fun getCallable(): Callable<String> {
// implement method
}
___

Create a free account to access the full topic