📅  最后修改于: 2022-03-11 14:53:34.924000             🧑  作者: Mango
class Test {
companion object {
var mInteger: Int = 10
fun hello() = println("hello world !")
}
}
fun main(args: Array) {
print(Test.mInteger)
print(Test.hello())
}