In v0.3 you would use (Int32, Int32)[]
In nightly it is Tuple{Int32, Int32}[]
On Tuesday, April 21, 2015 at 7:12:01 PM UTC+2, Wai Yip Tung wrote:
>
> I have a newbie question. I have programming background in Python, Java,
> C. In some cases in Julia, like an empty array, I need to explicitly
> specify the type. I am rather confused about the syntax. There a a few
> plausible options like parenthesis, braces, colon. I have trouble to pick
> the right one. Right now I want to declare a one dimensional array of tuple
> of two integers. I tried this and it does not work.
>
> (Tuple{Int32,Int32})[]
>
> I hope you can point me to use the syntax correctly
>
> Thanks,
>
> Wai Yip
>
>