Simple variable declarations

This commit is contained in:
David Gonzalez Martin 2024-07-01 13:26:00 +02:00
parent fdc5134d1f
commit c1f37b6688
2 changed files with 742 additions and 453 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,9 @@
fn[cc(.c)] main [export] () s32
{
>a: s32 = 2;
>b: s32 = 2;
{
>c: s32 = a - b;
return c;
}
}