Hello, Could you please explain me what's the comp...
# getting-started
j
Hello, Could you please explain me what's the companion object intended for?
k
https://kotlinlang.org/docs/reference/object-declarations.html#companion-objects Basically it replaces Java's `static`: everything in `Myclass`' s companion object can​ be used like this:
MyClass.myFun()
.