mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
17 lines
226 B
Lua
17 lines
226 B
Lua
%import textio
|
|
%import floats
|
|
%zeropage basicsafe
|
|
%import test_stack
|
|
|
|
main {
|
|
sub start() {
|
|
const ubyte size = 100
|
|
|
|
ubyte[size+10] bytes
|
|
|
|
txt.print("hello\n")
|
|
ubyte dummy = bytes[0]
|
|
|
|
}
|
|
}
|