<@U0CL38L48> just curious if you use immutable dat...
# announcements
b
@irus just curious if you use immutable data, why then you you prefer to use
Copy code
var list = listOf(0)
    list += 1
    list += 2
instead of val and mutable interface?