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

13 lines
193 B
Plaintext

(* TEST: [-asc -tc -cg -ir] *)
#include "std.alpha"
entry (arg) := {
[Boolean: c; Boolean: d; integer: result]
c := true;
d := !c;
result := printBoolean(d);
return 1;
}