mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
12 lines
144 B
Lua
12 lines
144 B
Lua
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared xx
|
|
|
|
if xx==1 or xx==2 or xx==3 {
|
|
xx++
|
|
}
|
|
}
|
|
}
|