The Tcl variant to output "comma" as separator (note -- this is not "CSV").
puts [join $argv ,]
puts [join $argv ", "]
package require csv puts [csv::join $argv]
The Tcl variant to output "comma" as separator (note -- this is not "CSV").
If you wanted "comma space" you'd do: If you actually wanted "CSV" then it would be (assuming tcllib is installed):