``` object DoItLater { @JvmStatic fun mai...
# announcements
s
Copy code
object DoItLater {

    @JvmStatic
    fun main(args: Array<String>) {
        val foo = Test("hi")
        val bar = Test("ho")
        println(foo.other)
        println(bar.other)
    }
    
    val Test.other: String
        get() = this.someProperty.reversed()

}

class Test(val someProperty: String)
this works and uses information from the Test instances