There you go ``` fun Int.plusTwo() = this + 2 cla...
# test
a
There you go
Copy code
fun Int.plusTwo() = this + 2

class ExampleTest {
    @Test fun example() {
        assertThat(2.plusTwo()).isEqualTo(4)
    }
}