set doesn't return a value, why not just `set(valu...
# announcements
b
set doesn't return a value, why not just
set(value) { baz.bar = value }
?
b
Why this
Copy code
fun foo() = somethingReturningUnit()
and not just this
Copy code
fun foo() { somethingReturningUnit() }
Kotlin loves reducing this stuff, so why require it here?