prog8/examples/test.p8
2023-11-27 01:27:50 +01:00

18 lines
348 B
Lua

%import textio
%import string
%zeropage basicsafe
main {
sub start() {
str[] names = ["a", "aa", "harry", "the Quick Brown Fox jumps Over the LAZY dog!"]
uword name
for name in names {
txt.print_ub(string.hash(name))
txt.spc()
txt.print(name)
txt.nl()
}
}
}