prog8/examples/test.p8
2023-05-17 00:33:55 +02:00

20 lines
264 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
word vfrom = $1000
word vto = $1000
word xx
for xx in vfrom to vto step -1 {
txt.print_w(xx)
txt.spc()
}
skip:
txt.nl()
}
}