prog8/examples/test.p8

11 lines
100 B
Lua

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