prog8/examples/test.p8

14 lines
202 B
Plaintext
Raw Normal View History

2023-03-22 21:00:21 +00:00
%import textio
2023-05-08 01:30:14 +00:00
%import string
%zeropage basicsafe
main {
2023-05-07 21:49:02 +00:00
2023-05-07 23:03:54 +00:00
sub start() {
uword seconds_uword = 1
uword remainder = seconds_uword % $0003 ==0
txt.print_uw(remainder)
2023-03-18 23:24:05 +00:00
}
}