If you specify neither repetitor nor
conditional, the
DO construct only groups a number of instructions together. They are processed
once. For example:
Example A.1. Simple DO block
/* The two instructions between DO and END are both *//* processed if A has the value "3". */Ifa=3thenDoa=a+2Say"Smile!"End