prog8/examples/test.p8

17 lines
247 B
Plaintext
Raw Normal View History

%import c64utils
%zeropage basicsafe
2020-07-26 22:32:59 +00:00
main {
2020-07-26 21:32:20 +00:00
sub start() {
2020-08-25 15:22:51 +00:00
str tekst = "the quick brown fox"
2020-08-25 15:22:51 +00:00
c64scr.print_uw(strlen("aapje"))
c64.CHROUT('\n')
c64scr.print_uw(strlen(tekst))
c64.CHROUT('\n')
2020-08-23 22:26:26 +00:00
}
}
2020-08-24 21:18:46 +00:00