I am working on a easy script to save information in a file. I have no problem writing to a file, but I'm not able to insert a carriage return into the file, so I can write multiple lines. I would greatly appreciate it, if someone could help me!
Write "string \n". The \n is a line feed. If you're using notepad to open the file, and you get weird characters, then you can also use \r\n instead of just \n
Diego