🔥🔥🔥 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) := {
[integer:x; integer:y]
[integer:x; integer:y; integer: result]
y := 1;
x := 3;
y := x % y;
x := 4;
y := 20;
y := y % x;
result := printInteger(y);
return y;
}