prog8/examples/test.p8

13 lines
142 B
Lua

main {
sub start() {
uword world = $2000
ubyte xx
ubyte chr = world[2]
ubyte chr2 = world[xx]
}
}