Swift - Control Flow
How can you simplify this Swift code using if-else statements?
let isRaining = true
if isRaining == true {
print("Take umbrella")
} else {
print("No umbrella needed")
}