How to create newline in a rebol block ?
- by Rebol Tutorial
let's say I have a config.txt which contains:
"param11" "param12"
"param21" "param22"
I'll load it in memory with
config: load %config.txt
I can save it back with
save %config.txt config
So far so good. Now the problem occurs for me when I want to add
"param31" "param32"
I have tried
append config reduce [newline "param31" "param32"]
save %config.txt config
But that doesn't give the expected result
"param11" "param12"
"param21" "param22"
"param31" "param32"
but this instead
"param11" "param12"
"param21" "param22" #"^/" "param31" "param32"
So how to ?