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-do-while.test.expected
[000000] ..
[52cec0]
Maximize
Restore
Switch to unified view
a
b/test/stmt-do-while.test.expected
1
FUNCTION func:BOOL;
2
IF x < 10
3
x := x / 2;
4
5
END_IF
6
WHILE x < 10 DO
7
x := x / 2;
8
9
END_WHILE