Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,2 @@
put file "input.txt" into fileContents
put fileContents into file "output.txt"

View file

@ -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