diff --git a/content/chapter 1/1.11-if-switch.md b/content/chapter 1/1.11-if-switch.md index 98c60ebe6..7b04c7667 100644 --- a/content/chapter 1/1.11-if-switch.md +++ b/content/chapter 1/1.11-if-switch.md @@ -203,6 +203,8 @@ func main() { fmt.Println("Biggest is a") } else if b > c { fmt.Println("Biggest is b") + } else { + fmt.Println("Biggest is c") } } else if b > c { fmt.Println("Biggest is b")