continue утверждения (continue statements)
ContinueStmt = "continue" [ Label ] .RowLoop:
for y, row := range rows {
for x, data := range row {
if data == endOfRow {
continue RowLoop
}
row[x] = data + bias(x, y)
}
}Last updated