home *** CD-ROM | disk | FTP | other *** search
/ 64'er Special 9 / 64er_Magazin_Sonderheft_09_86-09_1986_Markt__Technik_de_Side_A.d64 / c64.input#.bas (.txt) < prev    next >
Commodore BASIC  |  2022-10-26  |  237b  |  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 1,8,2,"test,s,w"
  7. 20 print#1,y$
  8. 30 close1
  9. 40 :
  10. 45 rem *** string lesen ***
  11. 50 open 1,8,2,"test,s,r"
  12. 60 sys 49152,1,a$
  13. 70 close 1
  14. 80 print a$
  15.