home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
basic
/
library
/
pb
/
library1
/
rmex291.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1990-04-03
|
266 b
|
11 lines
' This loop reads data and displays it using
' PRINT and WRITE
FOR I% = 1 TO 3
READ words$, number%
PRINT "With PRINT: "; words$; number%
PRINT "With WRITE: ";
WRITE words$, number%
PRINT
NEXT I%
DATA " HELLO ",10 ," HOW ARE ",20 ," YOU ",30
END