Diff of /test/stmt-for.test.expected [000000] .. [c307d5]  Maximize  Restore

Switch to side-by-side view

--- a
+++ b/test/stmt-for.test.expected
@@ -0,0 +1,9 @@
+FUNCTION func:BOOL;
+i := 0;
+
+WHILE i < 5;
+ DO
+x := x / 2;
+
+(i:=i+1);
+END_WHILE