27
loading...
This website collects cookies to deliver better user experience
val result = input.map { service.callWithPossibleException(it, someOtherParam) }
var result = new ArrayList<>(input.size());
for (var it: input) {
result.add(service.callWithPossibleException(it, someOtherParam));
}
fun main() = println("Hello World")
@main def helloWorld() = println("Hello World")