prog8/examples/test.p8

10 lines
102 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2022-03-13 11:52:12 +00:00
main {
2022-06-08 19:05:03 +00:00
sub start() {
2022-07-02 22:41:04 +00:00
txt.print("hello!\n")
2022-06-29 20:19:44 +00:00
}
2022-02-17 23:40:31 +00:00
}