Kotlin - Variables and Type System
You want to keep track of a user's score that changes during the game. Which Kotlin declaration is best suited for this?
1) val score = 0 2) var score = 0 3) const val score = 0 4) val var score = 0
