prog8/examples/test.p8

14 lines
194 B
Plaintext
Raw Normal View History

2023-08-14 19:49:13 +00: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 11:42:24 +00:00
}
}