Create a file on magnetic tape: Difference between revisions

m (→‎{{header|C}}: Remove vanity tags)
Line 176:
write(open("/dev/tape","w"),"Hi")
end</lang>
 
=={{header|Java}}==
<lang java>import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Collections;
 
public class CreateFile {
public static void main(String[] args) throws IOException {
String os = System.getProperty("os.name");
if (os.contains("Windows")) {
Path path = Paths.get("tape.file");
Files.write(path, Collections.singletonList("Hello World!"));
} else {
Path path = Paths.get("/dev/tape");
Files.write(path, Collections.singletonList("Hello World!"));
}
}
}</lang>
 
=={{header|JCL}}==
1,452

edits