prog8/examples/test.p8
Irmen de Jong 857f930dc2 amiga
2021-01-26 00:09:42 +01:00

17 lines
189 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
uword xx
uword iter = 1000
repeat iter {
xx++
}
txt.print_uw(xx)
}
}