home *** CD-ROM | disk | FTP | other *** search
/ 64'er Special 8 / 64er_Magazin_Sonderheft_08_86-08_1986_Markt__Technik_de.d64 / c16.input#.basic (.txt) < prev    next >
Commodore BASIC  |  2022-10-26  |  236b  |  15 lines

  1. 1 x$="123456789,"
  2. 2 for i=1 to 25:y$=y$+x$:next
  3. 3 y$=y$+"12345"
  4. 4 :
  5. 5 rem *** string schreiben ***
  6. 10 open 2,8,2,"test,s,w"
  7. 20 print#2,y$
  8. 30 close2
  9. 40 :
  10. 45 rem *** string lesen ***
  11. 50 open 2,8,2,"test,s,r"
  12. 60 sys 1630,2,a$
  13. 70 close 2
  14. 80 print a$
  15.