Files
kotlin-fork/backend.native/tests/codegen/delegatedProperty/lazy.kt
T
2017-03-01 14:40:10 +03:00

9 lines
151 B
Kotlin

val lazyValue: String by lazy {
println("computed!")
"Hello"
}
fun main(args: Array<String>) {
println(lazyValue)
println(lazyValue)
}