fun main(args: Array) { val myA = A() val i = myA.prop println(i) println(i) } class A { val prop = 1 }