Merge pull request #6 from birth-software/var

Simple variable declarations
This commit is contained in:
David 2024-07-03 00:31:05 +02:00 committed by GitHub
commit c73b6ff018
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;
}
}