mirror of
https://github.com/irmen/prog8.git
synced 2025-01-13 10:29:52 +00:00
16 lines
271 B
Lua
16 lines
271 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte[] stuff1=[1,2,3]
|
|
ubyte [] stuff2=[1,2,3]
|
|
ubyte[ ] stuff3=[1,2,3] ; TODO fix parse error
|
|
stuff1[1]++
|
|
stuff2[1]++
|
|
stuff3[1]++
|
|
}
|
|
}
|
|
|