prog8/examples/test.p8

10 lines
97 B
Lua

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