Increment of a for loop. When running a while loop we always check
the condition, then run the body, then run the next, then recur.
But if there is a continue statement, we need to jump to after the
body but before the next, because in a for loop the increment still
happens after a continue.