Because the condition is tested at the start of the loop, it is possible for the code within it to never actually be executed. Consider this program: set count = 6 while count < 6 print “Coding is ...
The iteration continues until the condition test result is FALSE, at which point the loop ends and the program executes the next line of code in sequence after the loop. Because the condition is ...