mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 04:31:20 +00:00
12 lines
193 B
Lua
12 lines
193 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared x,y,z
|
|
ubyte @shared k,l,m = 42
|
|
uword @shared r,s,t = sys.progend()
|
|
}
|
|
}
|