mirror of
https://github.com/irmen/prog8.git
synced 2024-11-18 19:12:44 +00:00
13 lines
156 B
Lua
13 lines
156 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
uword zzz=memory("derp", 2000)
|
|
txt.print("hello")
|
|
}
|
|
}
|