mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
14 lines
214 B
Lua
14 lines
214 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte[10] array
|
|
ubyte idx = 20
|
|
idx += 10
|
|
ubyte amount = 20
|
|
array[idx] -= 10
|
|
array[idx] -= amount
|
|
}
|
|
}
|