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

14 lines
194 B
Lua

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