prog8/examples/atari/hello.p8
2023-11-17 20:31:19 +01:00

13 lines
184 B
Lua

%import textio
%zeropage basicsafe
; hello world test for Atari 8-bit
main {
sub start() {
txt.print("Hello, World!")
txt.nl()
void txt.waitkey()
}
}