finished 19 (not fully tested...)
[williamcminus.git] / assign6 / looperrors.txt
blobab617bd01f41bc11387a4f914b0fc77fb67d3b19
1 BEGIN
2     REPEAT UNTIL five := 5;
3     REPEAT ratio := 9 UNTIL;
5     WHILE DO five := 5;
6     WHILE five = 5 five := 5 UNTIL ratio = 9;
8     FOR i = 1 TO 10 DO five = 5;
9     FOR i := 1, 10 DO five := 5;
10 END.