Dico
val printHash: (Any) -> Unit = fun (any: Any) { println(any.hashCode()) }
gildor
fun Any.printHash() = println(hashCode())