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 ...
SET count TO 0 WHILE count < 6 DO SEND ‘Coding is cool’ TO DISPLAY SET count TO count + 1 END WHILE The iteration continues until the condition test result is FALSE. At this point the loop ends and ...