Files
compiler-the-translators/tests/programs/helloworld.alpha
Scarlett cab30dc2c5 🐸
2025-05-05 23:39:24 -04:00

11 lines
182 B
Plaintext

#include "std.alpha"
entry (arg) := {
[string: str; character: ch; integer: result]
ch := 'h';
str := "Hello World!";
result := printCharacter(ch);
return 0;
}