On Friday, November 13, 2015 at 8:26:07 PM UTC-5, Grey Marsh wrote:
>
> I've an array of tuples each having 3 integers as members. I am unable to
> write it to a csv. I tried the following
>
> writecsv("file.csv",termite)
>
Hmm, this is probably a bug. For now, a workaround is:
open("file.csv", "w") do f
invoke(writedlm, (IO,Any,Any), f, termite,',')
end
