The Initial Statement of an If Block
if INITIAL_STATEMENT; CONDITION {
}Why Would I Use This?
length := getLength(email)
if length < 1 {
fmt.Println("Email is invalid")
}if length := getLength(email); length < 1 {
fmt.Println("Email is invalid")
}