[REBOL] Simple question regarding saving strings to files.
From: tbrownell::yahoo::com at: 14-Aug-2000 17:47
Hello again.
I was just trying to write/append a series of strings
to a .txt file and retain the format so that I get the
following...
a: "string a"
b: "string b"
c: "string c"
How do you save the above strings to string-text.txt
so that when I read the .txt file I get...
string a
"string b" "string c"
string a1
"string b1" "string c1"
so that I can do a...
str: read string-text.txt
foreach [a b c][print [a b c]]
Or is there a better way to do this?
Thanks again,
TBrownell