continue keyword in Go

The continue keyword is used in a loop control structure. It causes the loop to jump to the next iteration.
* In a for loop, the continue keyword causes control to jump to the update statement.
* In a while loop or do/while loop, control immediately jumps to the boolean expression.