static variable in kotlin

class Example {
    companion object {
        var count: Int = 0
    }
}

fun main() {
    Example.count = 5
    println(Example.count)
}