1
0
mirror of https://github.com/irmen/prog8.git synced 2025-03-13 05:31:01 +00:00
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()
}
}