From this ```fun foo() { ints.forEach(fun(value: ...
# language-proposals
y
From this
Copy code
fun foo() {
ints.forEach(fun(value: Int) {
if (value == 0) return
print(value)
})
}