mirror of
https://github.com/irmen/prog8.git
synced 2024-11-02 22:04:40 +00:00
20 lines
319 B
Lua
20 lines
319 B
Lua
%import c64utils
|
|
%zeropage basicsafe
|
|
|
|
~ main {
|
|
|
|
; @todo see problem in looplabelproblem.p8
|
|
|
|
; @todo gradle fatJar should include the antlr runtime jar
|
|
|
|
sub start() {
|
|
|
|
for ubyte @zp fastindex in 10 to 20 {
|
|
c64scr.print_ub(fastindex)
|
|
c64.CHROUT('\n')
|
|
; do something
|
|
}
|
|
|
|
}
|
|
}
|