[REBOL] Unwanted Newline
From: tim::johnsons-web::com at: 9-Sep-2001 21:07
Hello All:
This is rebol/core on Red Hat.
The following code produces an unwanted newline
REBOL[]
blks: [["name" "string"]["country" "string"]
["speed" "integer"]["range" "integer"]]
headers: []
save %test.txt blks
; result in the following file
["name" "string"] ["country" "string"]
["speed" "integer"] ["range" "integer"]
;note the the blocks are on seperate lines
; the result I am looking for is :
[["name" "string"]["country" "string"]["speed" "integer"]["range" "integer"]]
Note the desired outer set of braces.
What is the simplest way to accomplish this?
TIA
tj