undar-lang/test/hello.ul

13 lines
194 B
Plaintext
Executable File

str msg = "nuqneH 'u'?\n";
print(msg);
halt;
function print(str string) {
nat i = 0;
while (i < string.length) {
write = string[i];
i = i + 1;
}
write = '\n';
}