or ``` ```class Human(age : Int) { val bithYe...
# getting-started
s
or
Copy code
```class Human(age : Int) {

    val bithYearish : Int = (2019 - age).takeIf { age  > 0 } ?: throw Error("age no old enough")

}