Conversation:
Notices
-
LinuxWalt (@lnxw48a1) {3EB165E0-5BB1-45D2-9E7D-93B31821F864} (lnxw48a1)'s status on Sunday, 10-May-2020 19:51:43 EDT LinuxWalt (@lnxw48a1) {3EB165E0-5BB1-45D2-9E7D-93B31821F864} http://lua-users.org/wiki/SaveTableToFile
My mind had a a looping structure that pulled each key and value pair, saved it, and then continued the loop until finished. But nothing I wrote worked.-
LinuxWalt (@lnxw48a1) {3EB165E0-5BB1-45D2-9E7D-93B31821F864} (lnxw48a1)'s status on Sunday, 10-May-2020 20:14:26 EDT LinuxWalt (@lnxw48a1) {3EB165E0-5BB1-45D2-9E7D-93B31821F864} In #Tcl, it would be something like this:
foreach key [dict keys $j] {
puts $outfile "$key, [dict get $j $key]"
}
Easy, because it is fairly direct.
-