Files
compiler-the-translators/tests/sprint4/test/sp4_cg_demo.cg
2025-05-02 16:12:35 -04:00

9 lines
143 B
Plaintext

type main: string -> integer
function entry: main
entry(arg) := {
[integer:x; Boolean b]
x := 3 + 2 * 8;
b := x < 1;
return 0;
}