Merge branch 'Sprint3-Symbol_Table_Restructure-FE-t#NoTask' into Dev

This commit is contained in:
Moroseui
2025-04-04 21:34:52 -04:00
committed by GitHub
9 changed files with 544 additions and 364 deletions

View File

@ -32,3 +32,4 @@ entry (arg) := {
result := bar2(5,7); (* implicitly build a rec type value, assign 5 and 7 to fields x and y, but call them r and s *)
return 0;
}

View File

@ -0,0 +1,7 @@
type rec: [integer: x; integer: y]
type main: rec -> integer
function test: main
test (arg, arg2) := {
return 0;
}