fun main() { val first = listOf("hello") val second = listOf("hello", "world") val result = second.any(first::contains) println(result) }