DO
Do is part of the Pascal grammar, used in conjunction with: For, While, With. It does not actually do anything, and in Modern Pascal mode it is optional.
for loop:=1 to 100 do {.. something ..}
while (loop<101) do {.. something ..}
with myrecord do {.. something ..}Source: Reserved Words