mirror of
https://github.com/irmen/prog8.git
synced 2025-08-15 14:27:37 +00:00
19 lines
256 B
Lua
19 lines
256 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared x
|
|
bool @shared leftmost
|
|
|
|
if x>=10 and leftmost
|
|
cx16.r0L++
|
|
|
|
if x>=10 and not leftmost
|
|
cx16.r0L++
|
|
}
|
|
}
|
|
|