Variable d'accès Kotlin à partir d'une autre classe

class Test {
companion object {
        var mInteger: Int = 5
    }
}

//You can call like this
Test.Companion.mInteger
or
Test.mInteger
abdullah