For loops allow you to iterate over a sequence or range of values, executing a block of code for each iteration.
Continue to loop until the while loop condition becomes false or the loop exits.
The for-in loop in Bird is used to iterate over elements of a collection using the iter
function. It supports arrays and strings.
Continue and break add additional control flow functionality to loops. If you want to immediately skip to the next loop iteraction, use continue.
If you want to immediately exit the loop, use break.
Check out the playground!