7 lines
91 B
Kotlin
7 lines
91 B
Kotlin
package foo
|
|
|
|
fun Int.invoke(x: Int) = this + x
|
|
fun box(): Boolean {
|
|
return 1(2) == 3
|
|
}
|