Another approach would probably be using a helper ...
# announcements
f
Another approach would probably be using a helper like this:
Copy code
fun <T1, T2> let(p1: T1, p2: T2, block: (T1, T2) -> Unit) = block(p1, p2)