What does this code return to console?
fun main() {
var a = 10
var b = 15
a = b.also {b = a}
print(b - a)
}What does this code return to console?
fun main() {
var a = 10
var b = 15
a = b.also {b = a}
print(b - a)
}Create a free account to access the full topic