``` fun f(int : Int?) : String? = int?.let { "answ...
# getting-started
o
Copy code
fun f(int : Int?) : String? = int?.let { "answer = ${it.plus(3)}” }
try this
👍 6