prog8/examples/test.p8
Irmen de Jong 6a0551cea1 added 'atari' compiler target beginnings (Atari 800 XL)
also default char and string encoding now taken from compiler target
2022-02-22 00:52:35 +01:00

12 lines
186 B
Lua

%launcher none
main {
sub start() {
uword @shared names_buffer = memory("filenames", 200, 0)
do {
ubyte @shared char = '*'
} until true
}
}