2024-05-25 07:40:28 -06:00

9 lines
133 B
Plaintext

fn [cc(.c)] main [export]() s32 {
>a: s32 = 1;
>b: s32 = 2;
>c = a + b;
>d: s32 = 3;
>e = d - c;
return e;
}