11 lines
182 B
Plaintext
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;
|
|
} |