mirror of
https://github.com/irmen/prog8.git
synced 2024-12-25 23:29:55 +00:00
17 lines
239 B
Lua
17 lines
239 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte ci
|
|
ubyte from=10
|
|
ubyte end=1
|
|
|
|
for ci in from to end {
|
|
txt.print_ub(ci)
|
|
txt.spc()
|
|
}
|
|
txt.nl()
|
|
}
|
|
}
|