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

13 lines
192 B
Plaintext

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