HUGE Makefile updates!

This commit is contained in:
Scarlett
2025-03-28 20:38:21 -04:00
parent 982a8a0454
commit ad4f55c2bf
9 changed files with 242 additions and 405 deletions

View File

@ -0,0 +1,10 @@
type rec: [integer: x; integer: y]
entry(arg) := {
[rec: w]
w := reserve w;
w.x := 1;
w.y := 2;
w.z := 3;
return 0;
}