mirror of
https://github.com/irmen/prog8.git
synced 2024-11-04 04:05:00 +00:00
13 lines
184 B
Lua
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()
|
|
}
|
|
}
|