This commit is contained in:
Lorenzo Torres 2026-01-14 18:36:27 +01:00
parent 09d6cf4b46
commit ed0ad1d095
14 changed files with 846 additions and 897 deletions

20
test.l
View file

@ -1,12 +1,10 @@
u32 main(u32 b)
{
u32 a = 4;
//return a;
if (b == 3) {
return 3;
} else {
return 4;
}
return a;
struct point {
i32 x,
i32 y
}
i32 main()
{
point result = .{ x = 2, y = 1 };
return (result.y) + 2;
}