Break and Continue (done / con) Break (done) Use done to immediately exit the current loop. drylanglp 10 { if (i > 5) { done } pt("Iteration ${i}") // Stops at 5 } Continue (con) drylanglp 10 { if (i = 2) { con } pt("Iteration ${i}") // Skips 2 }PreviousLoops (lp)NextError Handling