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

8 lines
117 B
Plaintext

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