13 lines
203 B
Kotlin
13 lines
203 B
Kotlin
package codegen.delegatedProperty.lazy
|
|
|
|
import kotlin.test.*
|
|
|
|
val lazyValue: String by lazy {
|
|
println("computed!")
|
|
"Hello"
|
|
}
|
|
|
|
@Test fun runTest() {
|
|
println(lazyValue)
|
|
println(lazyValue)
|
|
} |