4 lines
78 B
Kotlin
Vendored
4 lines
78 B
Kotlin
Vendored
infix fun Int.foo(o: String, k: String = "K") = o + k
|
|
|
|
fun box() = 42 foo "O"
|