Hi, I wanted to append the tuple (3,4) to the tuple (1,2), expecting (1,2,3,4) as output:
julia> a = (1,2,(3,4)...) (1,2,(3,4)...) It turns out I have to use tuple(1,2,(3,4)...) == (1,2,3,4). I understand (1,2,3,4) and (1,2,(3,4)), but what does the output "(1,2,(3,4)...)", which has type (Int64,Int64,DataType), actually mean and what is it used for? Thanks! Rene
