prog8/examples/test.p8
2022-07-03 00:41:04 +02:00

10 lines
102 B
Lua

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