why cant i initialize delegated property from cons...
# getting-started
p
why cant i initialize delegated property from constructor?
Copy code
class Person(name: String) {
    var name: String by MyDelegate() = name
    var updated = Instant.now()
}