hi everyone, what is difference between companion ...
# getting-started
h
hi everyone, what is difference between companion object and object keyword? tks so much 9 replies class AB { private val NAME = “name” companion object { fun print() { AB().NAME } } }