prog8/examples/test.p8

27 lines
377 B
Lua

main {
sub start() {
; TODO WHY AREN'T UNUSED VARS REMOVED ANY LONGER???
ubyte xx1
ubyte yy1=22
ubyte zz1=33
repeat {
ubyte xx
ubyte yy=xx
ubyte aa
ubyte bb
ubyte cc
ubyte dd
}
repeat {
xx=1
yy=xx
}
}
}