FWIW, you can rely in `it` as the default in that ...
# language-proposals
t
FWIW, you can rely in
it
as the default in that case where there is one parameter:
Copy code
val myFunc: (firstParameter: String) -> Unit = {
        it.reversed()
}