Gale Paeper wrote:
In abstract terms, the statements in the statement-sequence of that compound-statement are:
if-statement goto-statement
I see. The following is then also not allowed ? Assume, i, j, l, h, k, m integers, foo a label.
for i := l to h do begin for j := k to m do begin writeln(j, ' '); goto foo; end; foo: writeln('hello'); end;
Micha