Repeats the block of statements 0 or more times.
count = 10 do until count = 0 print( "Count " + count ) count = count - 1 loop