Hey, is it possible to save each elements to a new line ?
Here's an example. holiday.txt is : ["1" "2-Sept-2002"] ["2" "23-Sept-2002"] the rebol script is rebol [] a: load %holiday.txt append/only a ["3" "29-Sept-2002"] save %holiday.txt a The result is : ["1" "2-Sept-2002"] ["2" "23-Sept-2002"]["3" "29-Sept-2002"] instead of ["1" "2-Sept-2002"] ["2" "23-Sept-2002"] ["3" "29-Sept-2002"] Notes: I want to use load and save, not write/append/lines Phil -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
