prog8/examples/test.p8

12 lines
144 B
Plaintext
Raw Normal View History

%zeropage basicsafe
2021-10-30 13:15:11 +00:00
main {
sub start() {
2022-02-11 23:15:52 +00:00
ubyte @shared xx
if xx==1 or xx==2 or xx==3 {
xx++
}
2022-02-06 03:29:36 +00:00
}
}