LOG IN
Help
Search
Browse
Talk
Home
Tools
c2iec
Code
c2iec
transpiler to convert ansii c-code to structured text
Brought to you by:
ingo
Unlicense
Home
Code
Tickets
Activity
Browse Commits
Fork
Merge Requests
0
Branches
master
Diff of
/test/stmt-for.test.expected
[b383b0]
..
[853a2a]
Maximize
Restore
Switch to unified view
a/test/stmt-for.test.expected
b/test/stmt-for.test.expected
...
...
3
3
4
WHILE i < 5;
4
WHILE i < 5;
5
DO
5
DO
6
x := x / 2;
6
x := x / 2;
7
7
8
((
i:=i+1
)-1)
;
8
i:=i+1;
9
END_WHILE
9
END_WHILE