prog8/examples/test.p8

11 lines
119 B
Plaintext
Raw Normal View History

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