1: 2: 3: 4:
fileOut.open("w", "TEXT", "????"); // Append title of document to file fileOut.writeln("put this text in here");
1: 2: 3: 4: 5: 6:
fileOut.open("r", "TEXT", "????"); textin = fileOut.read(); fileOut.close(); fileOut.open("w", "TEXT", "????"); fileOut.writeln(texin + TextOut);