Re: File output
- Posted by CoJaBo <CoJaBo_EUforum_Address at CJBN.net> Nov 29, 2004
- 469 views
Jacen wrote: > > How do I output to a file without overwriting it? I used > open(file,"u")--update Re-read the docs on open(), you need to use a, not u. > puts(fn,"blah") > and it overwrites what is already in the file >