prog8/examples/test.p8
2021-02-16 23:58:31 +01:00

13 lines
156 B
Lua

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
uword zzz=memory("derp", 2000)
txt.print("hello")
}
}