prog8/examples/test.p8

20 lines
264 B
Plaintext
Raw Normal View History

2023-05-16 21:10:33 +00:00
%import textio
%zeropage basicsafe
main {
2023-05-07 21:49:02 +00:00
2023-05-07 23:03:54 +00:00
sub start() {
2023-05-16 21:10:33 +00:00
word vfrom = $1000
word vto = $1000
2023-05-14 14:48:48 +00:00
2023-05-16 21:10:33 +00:00
word xx
for xx in vfrom to vto step -1 {
txt.print_w(xx)
txt.spc()
}
skip:
txt.nl()
2023-03-18 23:24:05 +00:00
}
}