All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jchanghong.cache.Caches.kt Maven / Gradle / Ivy

package com.github.jchanghong.cache

import kotlin.properties.Delegates

class Caches {
    var s by Delegates.observable(1) { property, oldValue, newValue ->
        println("$property $oldValue $newValue")
    }
}

fun main() {
    val caches = Caches()
    println(caches.s)
    caches.s = 11
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy