prog8/examples/test.p8

11 lines
120 B
Plaintext
Raw Normal View History

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