On Wed, Jun 29, 2016 at 5:27 AM, jw3126 <[email protected]> wrote: > If I have some julia code like > ``` > x,y = t > ```
It uses the iterator protocol. > what does this get desugared into? From playing with @code... macros it > seems that it is not exactly the same as x = t[1]; y = t[2]? > > More generally if I have some julia expression, how can I find out what it > gets desugared into? expand
