What would you expect to happen if you didn't? For...
# getting-started
r
What would you expect to happen if you didn't? For example:
Copy code
open class Parent(val num: Int)
class Child : Parent

println(Child().num)  // What should this print?
k
Parent's num.
r
Right, but what is parent's num? Without a constructor call it's never initialized.