Kotlin
Companion Objects
A `companion object` inside a class hosts what other languages call "static" members. Methods + properties on the companion are callable as `Foo.bar()`, but unlike static, they're a real object you can extend or implement interfaces on.