Note 7.4.1.
Notice the difference between the activecode example above for
break
and this example with continue
. Neither loop prints 5
, but in the loop with continue
, it continues iterating after where 5
would have been.