example: ``` fun Int.returnSelf(): Int { ...
# announcements
r
example:
Copy code
fun Int.returnSelf(): Int {
            println(this)
            return this
        }
        Assert.assertEquals(-1, -1.returnSelf())