goto утверждения (goto statements)
GotoStmt = "goto" Label .goto Error goto L // плохо
v := 3
L:if n%2 == 1 {
goto L1
}
for n > 0 {
f()
n--
L1:
f()
n--
}Previouscontinue утверждения (continue statements)Nextfallthrough утверждения (fallthrough statements, утверждения "провала")
Last updated