Create a file on magnetic tape: Difference between revisions

Content added Content deleted
Line 275: Line 275:
$tape.say: "I am a tape file now, or hope to be soon.";
$tape.say: "I am a tape file now, or hope to be soon.";
$tape.close;</lang>
$tape.close;</lang>

=={{header|Phix}}==
<lang Phix>include builtins/write_file.e
constant filepath = iff(platform()=WINDOWS?"tape.file":"/dev/tape"),
write_file(file_path,"Hello world!")</lang>


=={{header|PicoLisp}}==
=={{header|PicoLisp}}==