diff options
| author | Carson Fleming <cflems@cflems.net> | 2026-07-18 22:34:54 -0700 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2026-07-18 22:46:47 -0700 |
| commit | feb1cac139ca5aa2ba76ac6a0a318bced03d8638 (patch) | |
| tree | e107f774e08daed3dedd5d39345d2b725b2d171d /test/loop.c | |
| parent | 385419f95c6b9c35a7c2a6168f82f7aa4a44e22b (diff) | |
| download | ccc-feb1cac139ca5aa2ba76ac6a0a318bced03d8638.tar.gz | |
loop support
Diffstat (limited to 'test/loop.c')
| -rw-r--r-- | test/loop.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/loop.c b/test/loop.c new file mode 100644 index 0000000..a17444f --- /dev/null +++ b/test/loop.c @@ -0,0 +1,7 @@ +int main (int argc, char** argv) { + int i; + for (i = 0; i; i = i + 1) { + i = i / 2; + } + return i; +} |
