Files
compiler-the-translators/tests/programs/helloworld.alpha
2025-05-06 18:47:18 -04:00

23 lines
570 B
Plaintext

#include "std.alpha"
function entry: string2integer
entry (arg) := {
[integer: result]
result := printCharacter('H');
result := printCharacter('e');
result := printCharacter('l');
result := printCharacter('l');
result := printCharacter('o');
result := printCharacter(' ');
result := printCharacter('W');
result := printCharacter('o');
result := printCharacter('r');
result := printCharacter('l');
result := printCharacter('d');
result := printCharacter('!');
result := printCharacter('\n');
return 0;
}