mirror of
https://github.com/irmen/prog8.git
synced 2025-01-10 20:30:23 +00:00
13 lines
159 B
Lua
13 lines
159 B
Lua
main {
|
|
sub start() {
|
|
}
|
|
}
|
|
|
|
xyz {
|
|
uword buffer_ptr = memory("buffers_stack", 8192, 0)
|
|
|
|
sub pop() -> ubyte {
|
|
return buffer_ptr[2]
|
|
}
|
|
}
|