home *** CD-ROM | disk | FTP | other *** search
/ 64'er Special 18 / 64er_Magazin_Sonderheft_18_19xx_Markt__Technik_de_Side_A.d64 / text_grafik.801 (.txt) < prev    next >
Commodore BASIC  |  2022-10-26  |  157b  |  9 lines

  1. 10 rem - druck von text und grafik -
  2. 20 open1,4
  3. 30 print#1,"test";
  4. 40 print#1,chr$(8): rem grafik ein
  5. 50 for i=1 to 128
  6. 60 print#1,chr$(i+127);
  7. 70 next i
  8. 80 print#1,chr$(15):rem normaltext
  9.