49 
PRINT #  (print) 
Writes data in BSD files. 
Format: 
PRINT #  <logical 
number>, 
<data> 
[, 
<data> 
] ... 
Abbreviated form: 
R.# 
Explanation: 
•  Writes data in order into files  opened by the 
WOPEN 
#  statement for write-in. 
•  Files into which  data are to be written are to  be correctly specified by the logical 
number when opened. 
•  (Data) are numerical value data 
or 
character data. 
Example: 
1 
0 
WOPEN 
# 1 , 
" 
DATA" 
20 
PRI 
NT 
# 1 ,  1 , 
2, 
3 
30 
CLOS 
#1 
40 
END 
..... Numerical data 1,  2 and 3 are written in  the file  that has been opened to write in 
logical number 
1. 
References: 
WOPEN #  (page 48) 
CLOSE #  (page 53)