Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[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