Zmienna dostępu do Kotlin z innej klasy

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

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