Category: Files
WriteLine(fileHandle As Integer, value As String)
Void
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.
fileHandle = OpenFile("log.txt", True)
WriteLine(fileHandle, "Started")