damianpetla
class User(val name: String, var age: Int?) fun test() { val user = User("Name", 34) user.age?.toString() user.age.toString() }