prog8/examples/test.p8

11 lines
138 B
Plaintext
Raw Normal View History

%import textio
2021-10-09 16:32:44 +02:00
%import test_stack
%zeropage basicsafe
2021-05-29 15:25:17 +02:00
main {
sub start() {
2021-10-09 16:32:44 +02:00
txt.print("ok")
test_stack.test()
}
}