var age: Int? = 25 var nickname: String? = nil print(age) // Optional(25) print(nickname) // nil age = nil
Click Run to execute this code.