var a: Int? = nil // The right operand will be used if the left operand // evaluates to nil. print(a ?? "a is nil") // Prints "a is nil"