RosettaCodeData/Task/File-input-output/Phix/file-input-output-1.phix
2016-12-05 23:44:36 +01:00

6 lines
140 B
Text

integer fn = open("input.txt","rb")
string txt = get_text(fn)
close(fn)
fn = open("output.txt","wb")
puts(fn,txt)
close(fn)