prog8/examples/test.p8
2024-09-08 22:39:48 +02:00

17 lines
232 B
Lua

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
byte @shared x
word @shared w
if x==0 or x==1 or x==2
x++
if w==0 or w==1 or w==2
x++
}
}