Files
compiler-the-translators/tests/sprint4/test/sp4_cg_sub.alpha
Scarlett 9c25e1e667 🔥🔥🔥 all cg tests working!!
2025-05-05 00:06:27 -04:00

14 lines
211 B
Plaintext

(* TEST: [-asc -tc -cg -ir] *)
#include "std.alpha"
entry (arg) := {
[integer:x; integer:y; integer: result]
y := 1;
x := 3;
y := x - y;
result := printInteger(y);
return y;
}