Le samedi 20 décembre 2014 à 07:59 -0800, Viti VT a écrit : > Hi, > > > It's a silly question , and yet : > I the previous version of julia , if a is an array, print(a) would > just print the whole array. > But now it is printing the array with square parentheses > [5,6,7,8] > which is very inconvenient for me (when printing to data file) > > > I suppose there should be a flag or some other function that prints > array in the usual way, > I just fail to find it :( > > > Does anyone knows? Maybe just something like this?
julia> join(1:10, ',') "1,2,3,4,5,6,7,8,9,10" Regards
