Create a file on magnetic tape: Difference between revisions

no edit summary
No edit summary
Line 176:
write(open("/dev/tape","w"),"Hi")
end</lang>
 
=={{header|IS-BASIC}}==
<lang IS-BASIC>100 OPEN #1:"Tape1:README.TXT" ACCESS OUTPUT
110 PRINT #1:"I am a tape file now, or hope to be soon."
120 CLOSE #1</lang>
 
=={{header|Java}}==
Anonymous user