prog8/examples/test.p8
2021-03-18 19:20:48 +01:00

11 lines
98 B
Lua

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