mirror of
https://github.com/irmen/prog8.git
synced 2024-11-02 22:04:40 +00:00
14 lines
194 B
Lua
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()
|
|
}
|
|
}
|