or with lambdas: ``` int?.let( { it: Int ->...
# language-proposals
f
or with lambdas:
Copy code
int?.let(
    { it: Int -> it * 2 }
        ..{ it }
        ..{ it * 3 }
)