Swift - Optionals
What will be printed by the following Swift code?
var name: String? = "Alice"
if let unwrappedName = name {
print("Hello, \(unwrappedName)!")
} else {
print("No name found.")
}