Dico
class printHashWrapper<T : Any> { val printHash: (T) -> Unit = fun (t: T) { println(t.hashCode()) } }