samer@8: % catsep - Format nonempty list of string with comma separators samer@8: % catsep :: {[N]->string} -> string. samer@8: function s=catsep(sep,list) samer@4: s=list{1}; for i=2:length(list), s=[s,sep,list{i}]; end samer@4: end