implemented arrays, pointers and struct init

This commit is contained in:
Lorenzo Torres 2025-12-03 20:39:23 +01:00
parent b504739d59
commit 6d73af4fbb
5 changed files with 194 additions and 75 deletions

5
test.l
View file

@ -1,4 +1,5 @@
u32 a(u32 a)
u32 a()
{
u32 x = 3;
Person v = {x = 3, y = 4, z = 5};
return z[0];
}