how to write new line to file

Hi,

I just wonder how do write new line to file. I use
put “testing” after mylogfile.

It just appended at the end of the line. Could anybody tell me what is flag for new line. I’m very appreciated.

Best Regards,

I think you are looking for:

put return & "Testing" after file mylogfile

Alternatively you could put “& return” at the end of the previous line that you wrote to the log file.