[REBOL] Re: How to append newline to a block
From: dhsunanda::gmail at: 23-Apr-2009 18:30
Carlos Lorenz wrote:> Which is the best way to append a newline at the end of each string without > having to show the user the newline char #"^/" ?Does this do what you want? blk: ["a" "b" "c"] new-line/all blk 1 save %temp.tmp a print read %temp.tmp a b c Sunanda