Labels – break vs continue vs goto
For break and continue, the additional label lets you specify which loop you would like to refer to. For example, you may want to break/continue the outer loop instead of the one that you nested in. Here is an example from the Go Documentation: RowLoop: for y, row := range rows { for x, data … Read more