prog8/examples/test.p8

14 lines
194 B
Plaintext
Raw Normal View History

2023-08-14 21:49:13 +02:00
%import textio
%zeropage basicsafe
main {
sub start() {
thing()
}
sub thing() {
ubyte start=22
txt.print_ub(start)
txt.print_uw(&main.start)
2023-08-12 13:42:24 +02:00
}
}