operationale Semantik durch Sprünge:
while (B) A; ==> start : if (!B) goto end; A; goto start; end : skip;
(das ist auch die Notation der autotool-Aufgabe)
Ü: do A while (B);
do A while (B);