What is the error in this code?
let x = 5 guard x == 5 { return }
The guard is missing the else
guard
else
Nothing is wrong
The guard is missing a then
then
The comparison is wrong Reference: The Swift Programming Language: Language Guide: Control Flow: Early Exit