Files
compiler-the-translators/tests/sprint2/test/sp2_presidence.alpha
2025-04-04 18:08:59 -04:00

9 lines
120 B
Plaintext

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