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 >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Commodore BASIC
|
1986-01-01
|
236 b
|
15 lines
1 x$="123456789,"
2 for i=1 to 25:y$=y$+x$:next
3 y$=y$+"12345"
4 :
5 rem *** string schreiben ***
10 open 2,8,2,"test,s,w"
20 print#2,y$
30 close2
40 :
45 rem *** string lesen ***
50 open 2,8,2,"test,s,r"
60 sys 1630,2,a$
70 close 2
80 print a$