Implement variable declarations

This commit is contained in:
David Gonzalez Martin 2024-07-27 21:13:34 +02:00
parent 6f7b894e95
commit 628ec36442
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;
}