This commit is contained in:
Scarlett
2025-05-05 00:51:06 -04:00
parent 9c25e1e667
commit 6212deee51

View File

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