mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
19 lines
223 B
Lua
19 lines
223 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte a = 1
|
|
|
|
if a>4 or a<2 {
|
|
a++
|
|
}
|
|
|
|
if a>=2 and a<4 {
|
|
a++
|
|
}
|
|
|
|
txt.print_ub(a) ; 3
|
|
}
|
|
}
|