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

14 lines
204 B
Plaintext

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