🔥🔥🔥 all cg tests working!!

This commit is contained in:
Scarlett
2025-05-05 00:06:27 -04:00
parent 0fc796aa25
commit 9c25e1e667
10 changed files with 33 additions and 23 deletions

View File

@ -3,11 +3,12 @@
#include "std.alpha"
entry (arg) := {
[Boolean: b; integer: x; integer: y]
[Boolean: b; integer: x; integer: y; integer: result]
x := 1;
y := 2;
b := x = y;
result := printBoolean(b);
return 1;
}