Ruckus
open class Parent(val num: Int) class Child : Parent println(Child().num) // What should this print?
Kotlinger