``` listOf(1, 2, 3, 4, 5).forEach lit@{ i...
# arrow
s
Copy code
listOf(1, 2, 3, 4, 5).forEach lit@{
        if (it == 3) return@lit // local return to the caller of the lambda, i.e. the forEach loop
        print(it)
    }