11 lines
176 B
Plaintext
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;
|
|
}
|