mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
20 lines
405 B
Lua
20 lines
405 B
Lua
%import textio
|
|
%import string
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
str[] names = [iso:"irmen", iso:"jurrian", iso:"houtzaagmolen 41", iso:"the Quick Brown Fox jumps Over the LAZY dog!"]
|
|
|
|
; txt.iso()
|
|
|
|
uword name
|
|
for name in names {
|
|
txt.print_ub(string.hash(name))
|
|
txt.spc()
|
|
txt.print(name)
|
|
txt.nl()
|
|
}
|
|
}
|
|
}
|