Simon Kornblith
Simon Kornblith
If I'm reading [include_from_node1](https://github.com/JuliaLang/julia/blob/9fea76a18119af7e4e7f1a909f9eafae00285791/base/loading.jl#L119-L142) correctly, we convert path passed to `include` to an absolute path on the current worker, and then fetch the source from node 1. This makes `include`...
This may be intended, but it seems a bit awkward to me: ``` julia $ julia -p 1 [...] | | |_| | | | (_| | | Version 0.4.0-dev+1922...
It would be nice to have destructuring assignment, so that: ``` julia :x=>a, :y=>b = mydict ``` would be equivalent to: ``` julia a = mydict[:x] b = mydict[:y] ```...