15 lines
290 B
Text
15 lines
290 B
Text
|
|
put "input.txt" into inputFile
|
||
|
|
put "output.txt" into outputFile
|
||
|
|
|
||
|
|
open file inputFile
|
||
|
|
open file outputFile for writing
|
||
|
|
|
||
|
|
repeat forever
|
||
|
|
read from file inputFile until return
|
||
|
|
if it is empty then exit repeat
|
||
|
|
write it to file outputFile
|
||
|
|
end repeat
|
||
|
|
|
||
|
|
close file inputFile
|
||
|
|
close file outputFile
|