This may seem pedantic, but I'm just quite sure this isn't the case:
People don't decide to use C/C++ just for performance, but also for a better project scalability and elimination of many classes of bugs at compile time.
And even if there are some people who do that, it seems like a pretty ill informed decision:
image
https://arxiv.org/pdf/1901.10220.pdf&#:~:text=RQ1%20"Some%20languages%20have%20a,were%20associated%20with%20more%20bugs.
I've read quite a few papers about C/C++ vs dynamic languages for big projects, and can confirm this statistic - so anyone but people coming from C should really not switch to C++ for any other reason but performance :D
Although Julia has a just-in-time compiler that can make it very efficient, it misses the advantages of a real compiler for a statically typed language.
This also seems to be pretty distorted. It makes it sound like the Julia developers really wanted to have a "real compiler" but had to do without it.. Making Julia as dynamic as it is was a very conscious decision and is one of the core selling points of Julia and Julias success would be unthinkable without that decision. E.g. we considered rewriting Makie in Rust, but it would just not be possible since it doesn't allow a lot of the dynamic features we need.
Also, saying that Julia doesn't use a "real compiler", while building upon the same stack of technologies as Rust (LLVM), seems also pretty condescending ;)
Putting these thoughts in an issue, since its not clear to me how change the wording of the blogpost, without changing its essence too much...
This may seem pedantic, but I'm just quite sure this isn't the case:
>People don't decide to use C/C++ just for performance, but also for a better project scalability and elimination of many classes of bugs at compile time.
And even if there _are_ some people who do that, it seems like a pretty ill informed decision:

https://arxiv.org/pdf/1901.10220.pdf&#:~:text=RQ1%20"Some%20languages%20have%20a,were%20associated%20with%20more%20bugs.
I've read quite a few papers about C/C++ vs dynamic languages for big projects, and can confirm this statistic - so anyone but people coming from C should really not switch to C++ for any other reason but performance :D
>Although Julia has a just-in-time compiler that can make it very efficient, it misses the advantages of a real compiler for a statically typed language.
This also seems to be pretty distorted. It makes it sound like the Julia developers really wanted to have a "real compiler" but had to do without it.. Making Julia as dynamic as it is was a very conscious decision and is one of the core selling points of Julia and Julias success would be unthinkable without that decision. E.g. we considered rewriting Makie in Rust, but it would just not be possible since it doesn't allow a lot of the dynamic features we need.
Also, saying that Julia doesn't use a "real compiler", while building upon the same stack of technologies as Rust (LLVM), seems also pretty condescending ;)
Putting these thoughts in an issue, since its not clear to me how change the wording of the blogpost, without changing its essence too much...