prog8/examples/test.p8
2022-02-25 23:48:39 +01:00

19 lines
265 B
Lua

%import textio
%address $2000
main {
sub start() {
ubyte cc
for cc in 32 to 124 {
txt.chrout(cc)
}
txt.waitkey()
txt.clear_screen()
txt.print("\nHello!\nWorld\n")
repeat {
}
}
}