mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
14 lines
195 B
Kotlin
14 lines
195 B
Kotlin
import kotlin.platform.*
|
|
|
|
var v: Int = 1
|
|
[platformName("vget")]
|
|
get
|
|
[platformName("vset")]
|
|
set
|
|
|
|
fun box(): String {
|
|
v += 1
|
|
if (v != 2) return "Fail: $v"
|
|
|
|
return "OK"
|
|
} |