6 lines
98 B
Kotlin

package adrienmalin.pingpoints
data class Player (
var name: String,
var score: Int = 0
)