``` fun test(t: Int = 10) { println(t) } fun ...
# announcements
r
Copy code
fun test(t: Int = 10) {
    println(t)
}

fun main(args: Array<String>) {
    var t = 2
    test(t = 3)
    println(t)
}
prints 3 2 why not 3 3?