mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
16 lines
172 B
Kotlin
Vendored
16 lines
172 B
Kotlin
Vendored
// FILE: J.java
|
|
|
|
import java.lang.String;
|
|
|
|
class J {
|
|
String value;
|
|
|
|
J(String value) {
|
|
this.value = value;
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box() = J("OK").value
|