Skip to content

Commit 267ee5f

Browse files
committed
Adding one more example of while loop
1 parent 41f3f1d commit 267ee5f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

examples/example_while4.cmd

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
high int a = 0;
2+
int b = 0;
3+
while a < 10 { // High context
4+
if (b == 0) { // Still high context
5+
b = b + 1;
6+
} else {
7+
skip;
8+
}
9+
}

0 commit comments

Comments
 (0)