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

13 lines
159 B
Plaintext

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