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

15 lines
212 B
Plaintext

(* TEST: [-asc -tc -cg -ir] *)
#include "std.alpha"
entry (arg) := {
[Boolean: b; integer: x; integer: y; integer: result]
x := 1;
y := 2;
b := x < y;
result := printBoolean(b);
return 1;
}