Using Break and Continue Statements When Working with Loops in Go
Using **for loops** in Go allow you to automate and repeat tasks in an efficient manner. Learning how to control the operation and flow of loops will allow for customized logic in your program. You can control your loops with the `break` and `continue` statements.