mirror of
https://github.com/irmen/prog8.git
synced 2024-11-30 08:52:30 +00:00
18 lines
336 B
Lua
18 lines
336 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte index = 100
|
|
ubyte[] t_index = [1,2,3,4,5]
|
|
ubyte nibble = 0
|
|
|
|
index += t_index[4]
|
|
index += t_index[nibble]
|
|
nibble++
|
|
index -= t_index[3]
|
|
index -= t_index[nibble]
|
|
txt.print_ub(index) ; 100
|
|
}
|
|
}
|