prog8/examples/test.p8

14 lines
276 B
Plaintext
Raw Normal View History

%import c64utils
2019-01-02 22:32:41 +00:00
~ main {
2019-01-01 20:47:19 +00:00
2019-01-05 17:02:17 +00:00
sub start() {
2019-01-12 15:13:40 +00:00
c64scr.print("hoi")
c64scr.print("ho") ; @todo 2x CHROUT
c64scr.print("h") ; @todo 1x CHROUT
c64scr.print("h") ; @todo 1x CHROUT
c64scr.print("\n") ; @todo 1x CHROUT
}
2019-01-02 22:32:41 +00:00
}