🔥🔥🔥 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; Boolean: c; Boolean: d]
[Boolean:b; Boolean: c; Boolean: d; integer: result]
z := true;
d := false;
d := c & d;
result := printBoolean(d);
return 1;
}