bloat-buster/tests/for_each_int.bbb

11 lines
176 B
Plaintext

[export] main = fn [cc(c)] () s32
{
>top: s32 = 64;
>accummulator: s32 = 0;
for (i: 0..top)
{
accummulator += 1;
}
return accummulator - top;
}