diff options
Diffstat (limited to 'tests/sources/0500_loop_count.c')
-rw-r--r-- | tests/sources/0500_loop_count.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/sources/0500_loop_count.c b/tests/sources/0500_loop_count.c new file mode 100644 index 0000000..ace98cf --- /dev/null +++ b/tests/sources/0500_loop_count.c @@ -0,0 +1,5 @@ +int x = 0; +while (x < 100) { + print(x); + x = x + 1; +} |