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

12 lines
149 B
Plaintext

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