WriteLine

This function writes a string to a stream, and adds the line return character at the end.

Syntax

Parameters

Example

local path = "MyFile.dat" 

local stream = FileSystem:WriteFile(path)
if (stream==nil) then Debug:Error("Failed to write file.") end

stream:WriteLine("Hello!")
stream:Seek(0)
System:Print(stream:ReadLine())