REBOL [
Title: "Comma-Seperated-Values to REBOL converter"
Date: 16-Jun-1999
Author: "Bohdan Lechnowsky"
Email: bo@rebol.com
File: %convert-csv.r
Purpose: {
Convert CSV files to REBOL blocks
}
Category: [file util db text 2]
]
csv: read/lines to-file ask "Filename to convert from CSV: "
block: make block! 100
headings: parse/all first csv ","
foreach line next csv [append block parse/all line ","]
save to-file ask "Filename to save to: " head insert/only block headings