mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
19 lines
220 B
Lua
19 lines
220 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared xx
|
|
ubyte @shared yy
|
|
|
|
xx++
|
|
yy++
|
|
xx--
|
|
yy--
|
|
|
|
xx+=1
|
|
yy-=1
|
|
}
|
|
}
|