Wrapping it in a let block only seems to slow things down more.
@time let a=a, b=b, c=c
@map(sqrt(a^2 + b^2) + c, a, b)
endelapsed time: 4.951837524 seconds (1839984144 bytes allocated, 19.48% gc time) On Friday, March 13, 2015 at 11:01:35 AM UTC+2, Toivo Henningsson wrote: > > To introduce a local scope, shouldn't it be enough to wrap the emitted > code in a let block?
