Files
compiler-the-translators/tests/sprint4/test/sp4_cg_not.alpha
2025-04-25 23:26:50 -04:00

9 lines
153 B
Plaintext

type main: integer -> integer
function test: main
test (a) := {
[Boolean: c; Boolean: d]
c := true;
d := !c;
return 1;
}