prog8/examples/test.p8

11 lines
119 B
Plaintext
Raw Normal View History

2024-11-23 23:53:09 +00:00
%import textio
%zeropage basicsafe
main {
alias print = txt.print_ub
sub start() {
print(42)
2024-11-08 18:43:59 +00:00
}
}