import java.util.stream.Stream fun main(args: Array) { val count = Stream.of("abc", "acd", "ef").map(String::length).count() val after = 20 }