WriteLine
Category: Files
Signature
WriteLine(fileHandle As Integer, value As String)
Returns
Void
Description
Writes a string followed by a new line at the current file position.
Use OpenFile(path, True) to obtain a writeable file handle before calling this function.
Example
fileHandle = OpenFile("log.txt", True)
WriteLine(fileHandle, "Started")