Try it: ``` listOf(1,2,3,4).any { println(it) ...
# announcements
c
Try it:
Copy code
listOf(1,2,3,4).any {
  println(it)
  it <= 3
}
1true