lpirro
09/12/2017, 10:04 AMlet
because if not null not works with mutable properties, and you need to use !!gildor
09/12/2017, 10:12 AMval v = mutableV
if (v != null) {
println(v)
} else {
println("was null")
}
Easier to undersntand and maintain, especially for complex code