prog8/examples/test.p8

11 lines
138 B
Plaintext
Raw Normal View History

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