Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
put file "input.txt" into fileContents
|
||||
put fileContents into file "output.txt"
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue