mirror of
https://github.com/irmen/prog8.git
synced 2025-02-05 09:33:46 +00:00
19 lines
279 B
Lua
19 lines
279 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
uword screen = 2000
|
|
ubyte i = 1
|
|
uword w = 33
|
|
str derp ="derp"
|
|
ubyte[] array = [1,2,3]
|
|
|
|
@(screen+i) = 128
|
|
@(i+screen) = 129
|
|
|
|
txt.print("done\n")
|
|
}
|
|
}
|