if-let-1
if let actualInteger = possibleInteger as? Int { // do stuff with actual integer print(actualInteger) // prints 3 print(possibleInteger) // prints Optional(3) // actualInteger's scope ends here }