RosettaCodeData/Task/File-input-output/Logo/file-input-output.logo

11 lines
161 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
to copy :from :to
openread :from
openwrite :to
setread :from
setwrite :to
until [eof?] [print readrawline]
closeall
end
copy "input.txt "output.txt