xiranda/heyo.x
2024-04-04 16:45:26 -04:00

10 lines
151 B
Plaintext

type integer = 4;
type character = 1;
text: character [] = "Heyo world!";
size: integer = 12;
main ():
system (1, 1, #text, size);
return;;