diff options
| author | David Moc <personal@cdatgoose.org> | 2026-03-05 23:38:49 +0100 |
|---|---|---|
| committer | David Moc <personal@cdatgoose.org> | 2026-03-05 23:38:49 +0100 |
| commit | 0385817bb1301a778bb33f8405a435293b9f8905 (patch) | |
| tree | 53f4b6f13e393bd368c37ba4363826b46940dfd3 /tests/for_loop.c | |
| parent | 262abf9b552a168ef3ae91f91af97683f16420a7 (diff) | |
Pushing to repo for safety.
Diffstat (limited to 'tests/for_loop.c')
| -rw-r--r-- | tests/for_loop.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/for_loop.c b/tests/for_loop.c new file mode 100644 index 0000000..0fc3d0c --- /dev/null +++ b/tests/for_loop.c @@ -0,0 +1,9 @@ +int main() { + int sum = 0; + + for (int i = 0; i < 4; i = i + 1) { + sum = sum + i; + } + + return sum; +} |
