ic, thanks a lot!

Am 03.01.2015 um 19:23 schrieb Ivar Nesje <[email protected]>:

> See https://github.com/JuliaLang/julia/issues/4869
> 
> kl. 19:19:26 UTC+1 lørdag 3. januar 2015 skrev René Donner følgende:
> 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 
> 
> 
> 

Reply via email to