Thanks for writing up your thoughts!<p>I find Julia's core design to be excellent for general purpose programming, better than python in fact since it essentially solves the expression problem with it's type system and multiple dispatch.<p>It's external program interop is also more pleasant than Python's :<a href="https://docs.julialang.org/en/v1/manual/running-external-programs/#Running-External-Programs-1" rel="nofollow">https://docs.julialang.org/en/v1/manual/running-external-pro...</a><p>Sure, it doesn't have the same general library ecosystem, but even that is being remedied for core areas like web programming: <a href="http://genieframework.com/" rel="nofollow">http://genieframework.com/</a> (a full MVC framework), <a href="https://github.com/JuliaGizmos/WebIO.jl" rel="nofollow">https://github.com/JuliaGizmos/WebIO.jl</a> (write front end code without javascript) and
I'm particularly excited for <a href="https://github.com/Keno/julia-wasm" rel="nofollow">https://github.com/Keno/julia-wasm</a>, which will allow Julia programs to be compiled for the browser.<p>For any packages than are python only, it has excellent python interop using the pycall.jl package, which even allows users to write custom python classes in Julia.<p>With regards to numerical programming, it's obviously already far ahead of swift, and IMO much better placed to beat it in the long run. For example the WIP zyogte package is able to hook into Julia's compiler to zero overhead diff arbitrary code. Using Cassette.jl, package authors can write custom compiler passes outside the main repo and in pure Julia: <a href="https://julialang.org/blog/2018/12/ml-language-compiler" rel="nofollow">https://julialang.org/blog/2018/12/ml-language-compiler</a><p>In addition, it's macro system, introspection, dynamic typing and value types through abstract typing approach allows for natural development of advanced probabilistic programming languages: <a href="https://github.com/TuringLang/Turing.jl" rel="nofollow">https://github.com/TuringLang/Turing.jl</a>, <a href="https://github.com/probcomp/Gen" rel="nofollow">https://github.com/probcomp/Gen</a>, <a href="https://github.com/zenna/Omega.jl/pulse" rel="nofollow">https://github.com/zenna/Omega.jl/pulse</a>