Conditionals: if height > 6 { fmt.Println("You are super tall!") } else if height > 4 { fmt.Println("You are tall enough!") } else { fmt.Println("You are not tall enough!") } The Initial Statement of an If Block : An if conditional can h...