Files
compiler-the-translators/tests/sprint4/test/sp4_cg_neg.alpha
Scarlett 0fc796aa25 🤯🤯🤯🤯🤯🤯🤯🤯🤯
2025-05-04 23:54:42 -04:00

12 lines
148 B
Plaintext

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