do statement group until expression;This will execute the statement group first and then evaluate the logical value of expression. If it's true, the loop is over. If it's false, the statement group will be executed again, until expression becomes true.
A do-until statement always carries out the group of statements at least once.
Again, do-untill and do-until are same.