prog8/examples/test.p8

11 lines
120 B
Lua

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
txt.print("Foo_bar\n")
}
}