5 lines
78 B
Kotlin
5 lines
78 B
Kotlin
class A(val a:Int) {
|
|
fun foo(i:Int) = a + i
|
|
}
|
|
|
|
fun fortyTwo() = A(41).foo(1) |