mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
11 lines
108 B
Kotlin
11 lines
108 B
Kotlin
object Foo {
|
|
val bar: String
|
|
|
|
{
|
|
bar = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Foo.bar
|
|
} |