Re: [julia-users] I don't understand the behaviour of macros and let.

2015-09-12 Thread Jameson Nash
You also need to call `esc()` on any symbol you want to "leak" into the outer scope. Otherwise, it will be turned into a unique symbol name visible only to the code generated by that macro. On Sat, Sep 12, 2015 at 5:45 PM Diego Javier Zea wrote: > I don't understand why am

Re: [julia-users] I don't understand the behaviour of macros and let.

2015-09-12 Thread Diego Javier Zea
Thank you Jameson!* esc()* does the trick :) El sábado, 12 de septiembre de 2015, 21:56:19 (UTC-3), Jameson escribió: > > You also need to call `esc()` on any symbol you want to "leak" into the > outer scope. Otherwise, it will be turned into a unique symbol name visible > only to the code