prog8/examples/test.p8

11 lines
98 B
Plaintext
Raw Normal View History

2021-03-16 22:06:28 +00:00
%import textio
2021-03-18 18:17:05 +00:00
%zeropage basicsafe
2021-02-28 19:40:31 +00:00
main {
2021-03-15 21:24:09 +00:00
2021-03-18 18:17:05 +00:00
sub start() {
txt.print("hello")
2021-03-16 22:06:28 +00:00
}
}
2021-03-18 18:17:05 +00:00