Merge pull request #29 from birth-software/var-decl

Implement variable declarations
This commit is contained in:
David 2024-07-28 11:21:48 +02:00 committed by GitHub
commit 93123d8e42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 385 additions and 225 deletions

File diff suppressed because it is too large Load Diff

5
tests/return_var.nat Normal file
View File

@ -0,0 +1,5 @@
fn main() s32
{
>a: s32 = 0;
return a;
}