ideally, I would have had `class Child(val childVa...
# getting-started
t
ideally, I would have had
class Child(val childValue: String = "child value", parentValue: String = "overridden value"): Parent(parentValue = parentValue)
, but I know that
data class
doesn't allow non-var/non-val parameters in their constructor