writeLine()
From Hack Wars Wiki
| Information for free function writeLine() | |
| Function | writeLine(string file, string data) |
| API | Attacking, Banking, FTP, Watch, HTTP |
| Description | Writes the data provided on a new line at the end of the file. |
Example
The following code will add the line "Hello World!" to the end of a file.
writeLine("test.txt", "Hello World!"); |
