prog8/examples/test.p8

10 lines
97 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2020-12-08 00:02:38 +00:00
main {
2021-01-13 21:32:17 +00:00
sub start() {
2021-02-06 14:22:31 +00:00
txt.print("hello")
2021-01-10 14:15:00 +00:00
}
2020-08-27 17:47:50 +00:00
}