Can I destructure a list within the lambda when us...
# getting-started
h
Can I destructure a list within the lambda when using
with
? It does not seem to work:
with(listOf(1,2)){ (x, y) -> x + y}